shithub: libvpx

Download patch

ref: 26a49182825351ba3530f031ab0fc694c7687895
parent: 8d449ce0a919dad33a0ec0ba03368e8449317851
parent: 1c0ee77589b05a99ec50abdd373d2ba15d4fc8d6
author: Jim Bankoski <jimbankoski@google.com>
date: Fri Dec 7 12:15:52 EST 2012

Merge "Fix meaninglesss if." into vp9-preview

--- a/vp9/encoder/vp9_firstpass.c
+++ b/vp9/encoder/vp9_firstpass.c
@@ -780,7 +780,7 @@
     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);
   }