diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-09-21 18:46:56 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-08 01:00:58 +0100 |
commit | 9a5d6c23c5cc25b887f996d55f96dfbacf760e88 (patch) | |
tree | 78a4bad898880ef2a740306908204a008980a581 /libavcodec/motion-test.c | |
parent | be0675ce672b7788b0f1277704be663f415d6498 (diff) | |
download | ffmpeg-9a5d6c23c5cc25b887f996d55f96dfbacf760e88.tar.gz |
tests/tools/examples: Replace direct exit() calls by return.
Diffstat (limited to 'libavcodec/motion-test.c')
-rw-r--r-- | libavcodec/motion-test.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/motion-test.c b/libavcodec/motion-test.c index f689824f8e..b054fc9d1b 100644 --- a/libavcodec/motion-test.c +++ b/libavcodec/motion-test.c @@ -33,7 +33,6 @@ #include "dsputil.h" #include "libavutil/lfg.h" -#undef exit #undef printf #define WIDTH 64 @@ -61,7 +60,6 @@ static void help(void) { printf("motion-test [-h]\n" "test motion implementations\n"); - exit(1); } static int64_t gettime(void) @@ -138,7 +136,7 @@ int main(int argc, char **argv) switch(c) { case 'h': help(); - break; + return 1; } } |