am 47c7e365: am 130a7985: Merge "fix error log statement"

* commit '47c7e365071f75489604b2d0ba3109fe39bac1ef':
  fix error log statement
This commit is contained in:
Doug Zongker
2014-03-18 00:02:38 +00:00
committed by Android Git Automerger
+1 -1
View File
@@ -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;
}