diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-09-18 10:14:46 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-09-18 10:14:46 +0000 |
commit | 9407246d7a41a5fcd53927ae6d085f517bbad304 (patch) | |
tree | f0b65a593cb81cd370438c10b57d0dda84db5c1c /tools/probetest.c | |
parent | 497559ec90bf9b81d09fe1a89875d0a1d98b2cbe (diff) | |
download | ffmpeg-9407246d7a41a5fcd53927ae6d085f517bbad304.tar.gz |
Drop argc/argv parameters from main(), they are unused.
Originally committed as revision 19907 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tools/probetest.c')
-rw-r--r-- | tools/probetest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/probetest.c b/tools/probetest.c index 34044a9fc3..d1d77b37a5 100644 --- a/tools/probetest.c +++ b/tools/probetest.c @@ -48,7 +48,7 @@ static void probe(AVProbeData *pd, int type, int p, int size) } } -int main(int argc, char **argv) +int main(void) { unsigned int p, i, type, size, retry; AVProbeData pd; |