aboutsummaryrefslogtreecommitdiffstats
path: root/minui
diff options
context:
space:
mode:
authorDoug Zongker <dougz@google.com>2014-03-18 00:02:38 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-03-18 00:02:38 +0000
commit7425d035ef70a831a6b8b0d85718244195d69aef (patch)
tree284d7b7a3457586ed01d5153261f2f7446112a83 /minui
parenta68c517c628acdcfd0107536f34c3fd882ce0629 (diff)
parent47c7e365071f75489604b2d0ba3109fe39bac1ef (diff)
downloadbootable_recovery-7425d035ef70a831a6b8b0d85718244195d69aef.zip
bootable_recovery-7425d035ef70a831a6b8b0d85718244195d69aef.tar.gz
bootable_recovery-7425d035ef70a831a6b8b0d85718244195d69aef.tar.bz2
am 47c7e365: am 130a7985: Merge "fix error log statement"
* commit '47c7e365071f75489604b2d0ba3109fe39bac1ef': fix error log statement
Diffstat (limited to 'minui')
-rw-r--r--minui/resources.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/minui/resources.c b/minui/resources.c
index 69fd14b..a0c621b 100644
--- a/minui/resources.c
+++ b/minui/resources.c
@@ -110,7 +110,7 @@ static int open_png(const char* name, png_structp* png_ptr, png_infop* info_ptr,
*channels = 3;
} else {
fprintf(stderr, "minui doesn't support PNG depth %d channels %d color_type %d\n",
- bit_depth, (int) channels, color_type);
+ bit_depth, *channels, color_type);
result = -7;
goto exit;
}