Merge "Fix meaninglesss if." into vp9-preview

This commit is contained in:
Jim Bankoski 2012-12-07 17:15:52 -08:00 committed by Gerrit Code Review
commit 26a4918282

View File

@ -780,7 +780,7 @@ void vp9_first_pass(VP9_COMP *cpi) {
else
recon_file = fopen(filename, "ab");
if (fwrite(lst_yv12->buffer_alloc, lst_yv12->frame_size, 1, recon_file));
(void)fwrite(lst_yv12->buffer_alloc, lst_yv12->frame_size, 1, recon_file);
fclose(recon_file);
}