Commit b418c958 authored by Jim Bankoski's avatar Jim Bankoski Committed by Gerrit Code Review
Browse files

Merge "tools_common.c: unsigned signed mismatch addressed"

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