Browse code

Remove unused variable i.

Originally committed as revision 11474 to svn://svn.ffmpeg.org/ffmpeg/trunk

Diego Biurrun authored on 2008/01/09 07:57:03
Showing 1 changed files
... ...
@@ -9,7 +9,7 @@ int main(int argc, char** argv)
9 9
     FILE *f= fopen(argv[1], "rb+");
10 10
     int count= atoi(argv[2]);
11 11
     int maxburst= atoi(argv[3]);
12
-    int length, i;
12
+    int length;
13 13
 
14 14
     srand (time (0));
15 15