diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-01-13 17:01:18 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-02-01 14:24:25 +0100 |
commit | 2e3fb9e3728b087870eaaea5e1c08f42c809e1eb (patch) | |
tree | 6daeda9386276d9f4cd6625c5f655b9d3072cd53 | |
parent | 8ca8e4a8461b6617d365954155e41f818287b181 (diff) | |
download | ffmpeg-2e3fb9e3728b087870eaaea5e1c08f42c809e1eb.tar.gz |
swscale-test: Drop unused argc and argv arguments from main().
-rw-r--r-- | libswscale/colorspace-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/colorspace-test.c b/libswscale/colorspace-test.c index 10cee8a955..135924c1ab 100644 --- a/libswscale/colorspace-test.c +++ b/libswscale/colorspace-test.c @@ -33,7 +33,7 @@ #define FUNC(s, d, n) { s, d, #n, n } -int main(int argc, char **argv) +int main(void) { int i, funcNum; uint8_t *srcBuffer = av_malloc(SIZE); |