diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-01-08 22:57:03 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-01-08 22:57:03 +0000 |
commit | e36f0f03cc6ec103c236ef2199039f054a1e13fc (patch) | |
tree | 0e3d728238580c9357154fefcba32091f92712eb /tools | |
parent | f0cb505aeba32c821932f38696c10926cfc0a340 (diff) | |
download | ffmpeg-e36f0f03cc6ec103c236ef2199039f054a1e13fc.tar.gz |
Remove unused variable i.
Originally committed as revision 11474 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tools')
-rw-r--r-- | tools/trasher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/trasher.c b/tools/trasher.c index a9d27736db..cc9f368fb4 100644 --- a/tools/trasher.c +++ b/tools/trasher.c @@ -9,7 +9,7 @@ int main(int argc, char** argv) FILE *f= fopen(argv[1], "rb+"); int count= atoi(argv[2]); int maxburst= atoi(argv[3]); - int length, i; + int length; srand (time (0)); |