Fix meaninglesss if.

Change-Id: I0cb06d77805246fe39d39ad3bc5df3c3f52c7050
This commit is contained in:
Frank Galligan 2012-12-07 15:20:39 -08:00
parent 434336b072
commit 1c0ee77589

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);
}