]> granicus.if.org Git - libvpx/commitdiff
Added missing format specifier in print statement
authorAdrian Grange <agrange@google.com>
Thu, 10 Mar 2011 20:43:49 +0000 (12:43 -0800)
committerAdrian Grange <agrange@google.com>
Thu, 10 Mar 2011 20:43:49 +0000 (12:43 -0800)
Printout of firstpass stats for frame had one fewer
format specifiers than arguments.

Change-Id: I5a42c85aa79c471e1a70afd75e24a91546b7a1cd

vp8/encoder/firstpass.c

index 00c2bc5817df337815357baadf6c38fb95849518..3030ed7980312954d793be85f79a73e3a6c68f27 100644 (file)
@@ -293,13 +293,14 @@ void vp8_output_stats(const VP8_COMP            *cpi,
 
 // TEMP debug code
 #if OUTPUT_FPF
+
     {
         FILE *fpfile;
         fpfile = fopen("firstpass.stt", "a");
 
         fprintf(fpfile, "%12.0f %12.0f %12.0f %12.4f %12.4f %12.4f %12.4f"
-                " %12.4f %12.4f %12.4f %12.4f %12.4f %12.4f %12.4f %12.0f"
-                " %12.4f\n",
+                " %12.4f %12.4f %12.4f %12.4f %12.4f %12.4f %12.4f %12.4f"
+                " %12.0f %12.4f\n",
                 stats->frame,
                 stats->intra_error,
                 stats->coded_error,