Commit c6bdc908 authored by Marc Hoffman's avatar Marc Hoffman Committed by Diego Biurrun

Remove illegal call to exit().

patch by Marc Hoffman, mmh pleasantst com

Originally committed as revision 8575 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b83f7eb2
...@@ -461,7 +461,6 @@ void help(void) ...@@ -461,7 +461,6 @@ void help(void)
" 2 -> do 3. test from mpeg4 std\n" " 2 -> do 3. test from mpeg4 std\n"
"-i test IDCT implementations\n" "-i test IDCT implementations\n"
"-4 test IDCT248 implementations\n"); "-4 test IDCT248 implementations\n");
exit(1);
} }
int main(int argc, char **argv) int main(int argc, char **argv)
...@@ -493,7 +492,7 @@ int main(int argc, char **argv) ...@@ -493,7 +492,7 @@ int main(int argc, char **argv)
default : default :
case 'h': case 'h':
help(); help();
break; return 0;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment