Commit e36f0f03 authored by Diego Biurrun's avatar Diego Biurrun

Remove unused variable i.

Originally committed as revision 11474 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f0cb505a
...@@ -9,7 +9,7 @@ int main(int argc, char** argv) ...@@ -9,7 +9,7 @@ int main(int argc, char** argv)
FILE *f= fopen(argv[1], "rb+"); FILE *f= fopen(argv[1], "rb+");
int count= atoi(argv[2]); int count= atoi(argv[2]);
int maxburst= atoi(argv[3]); int maxburst= atoi(argv[3]);
int length, i; int length;
srand (time (0)); srand (time (0));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment