Skip to content
Snippets Groups Projects
Commit c6bdc908 authored by Marc Hoffman's avatar Marc Hoffman Committed by Diego Biurrun
Browse files

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
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment