commit | 130a7985386f7f7741179fc38b1a15da7ec9f358 | [log] [tgz] |
---|---|---|
author | Doug Zongker <dougz@google.com> | Mon Mar 17 23:52:34 2014 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Mar 17 23:52:35 2014 +0000 |
tree | f598640fc79569d843981d110d88b8787315695a | |
parent | d90da13076303a5377de631623e16c34ee195830 [diff] | |
parent | a388a769760af4d8999558f38f81dafa63cc0bfb [diff] |
Merge "fix error log statement"
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 @@ *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; }