From c6bdc90890250ce351b260eff69ce3c0d0745a62 Mon Sep 17 00:00:00 2001 From: Marc Hoffman Date: Sat, 31 Mar 2007 17:14:59 +0000 Subject: [PATCH] Remove illegal call to exit(). patch by Marc Hoffman, mmh pleasantst com Originally committed as revision 8575 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dct-test.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index 16b750c..0e4684b 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -461,7 +461,6 @@ void help(void) " 2 -> do 3. test from mpeg4 std\n" "-i test IDCT implementations\n" "-4 test IDCT248 implementations\n"); - exit(1); } int main(int argc, char **argv) @@ -493,7 +492,7 @@ int main(int argc, char **argv) default : case 'h': help(); - break; + return 0; } } -- 2.7.4