Commit c6b5048e authored by diego's avatar diego

Remove illegal call to exit().

patch by Marc Hoffman, mmh pleasantst com


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8575 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a91b27b9
...@@ -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