Commit 201ebe55 authored by Jim Bankoski's avatar Jim Bankoski
Browse files

tools_common.c: unsigned signed mismatch addressed

Change-Id: I919ca42794f13751ca099868e73892d9df64e45f
Showing with 1 addition and 1 deletion
......@@ -246,7 +246,7 @@ int vpx_img_read(vpx_image_t *img, FILE *file) {
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;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment