Index: source/libvpx/tools_common.c |
=================================================================== |
--- source/libvpx/tools_common.c (revision 290053) |
+++ source/libvpx/tools_common.c (working copy) |
@@ -246,7 +246,7 @@ |
int y; |
for (y = 0; y < h; ++y) { |
- if (fread(buf, 1, w, file) != w) |
+ if (fread(buf, 1, w, file) != (size_t)w) |
return 0; |
buf += stride; |
} |