summaryrefslogtreecommitdiffstats
path: root/minui
diff options
context:
space:
mode:
authorDoug Zongker <dougz@google.com>2014-03-17 23:57:40 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-03-17 23:57:40 +0000
commit47c7e365071f75489604b2d0ba3109fe39bac1ef (patch)
tree7e827c32479d243185ec3887c26c1deaf71a84f0 /minui
parent80c1a386d3f614919708b37986919ecaf74ee738 (diff)
parent130a7985386f7f7741179fc38b1a15da7ec9f358 (diff)
downloadbootable_recovery-47c7e365071f75489604b2d0ba3109fe39bac1ef.zip
bootable_recovery-47c7e365071f75489604b2d0ba3109fe39bac1ef.tar.gz
bootable_recovery-47c7e365071f75489604b2d0ba3109fe39bac1ef.tar.bz2
am 130a7985: Merge "fix error log statement"
* commit '130a7985386f7f7741179fc38b1a15da7ec9f358': 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;
}