diff options
author | Mark Salyzyn <salyzyn@google.com> | 2014-03-14 21:59:56 +0100 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-03-14 21:59:56 +0100 |
commit | 4b6de1ba1ce0fff95c18a8abb7ba6e5762006d49 (patch) | |
tree | 8fa1fa41069b4c6991157ac484069121caab9767 /minui/resources.c | |
parent | am a7266ef0: Merge "separate fbdev-specific code out from minui" (diff) | |
parent | Merge "Recovery 64-bit compile issues" (diff) | |
download | android_bootable_recovery-4b6de1ba1ce0fff95c18a8abb7ba6e5762006d49.tar android_bootable_recovery-4b6de1ba1ce0fff95c18a8abb7ba6e5762006d49.tar.gz android_bootable_recovery-4b6de1ba1ce0fff95c18a8abb7ba6e5762006d49.tar.bz2 android_bootable_recovery-4b6de1ba1ce0fff95c18a8abb7ba6e5762006d49.tar.lz android_bootable_recovery-4b6de1ba1ce0fff95c18a8abb7ba6e5762006d49.tar.xz android_bootable_recovery-4b6de1ba1ce0fff95c18a8abb7ba6e5762006d49.tar.zst android_bootable_recovery-4b6de1ba1ce0fff95c18a8abb7ba6e5762006d49.zip |
Diffstat (limited to 'minui/resources.c')
-rw-r--r-- | minui/resources.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/minui/resources.c b/minui/resources.c index df813cb1e..a6528b357 100644 --- a/minui/resources.c +++ b/minui/resources.c @@ -95,7 +95,7 @@ int res_create_surface(const char* name, gr_surface* pSurface) { png_read_info(png_ptr, info_ptr); int color_type, bit_depth; - size_t width, height; + png_uint_32 width, height; png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, NULL, NULL, NULL); |