Browse Source

Fix reference to av_random where av_lfg_get was meant.

Originally committed as revision 18112 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun 16 years ago
parent
commit
0e4cb6cbad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libavutil/lfg.c

+ 1 - 1
libavutil/lfg.c

@@ -56,7 +56,7 @@ int main(void)
 //            av_log(NULL,AV_LOG_ERROR, "%X\n", av_lfg_get(&state));
             x+=av_lfg_get(&state);
         }
-        STOP_TIMER("624 calls of av_random");
+        STOP_TIMER("624 calls of av_lfg_get");
     }
     av_log(NULL, AV_LOG_ERROR, "final value:%X\n", x);
     return 0;