Remove illegal call to exit().

patch by Marc Hoffman, mmh pleasantst com

Originally committed as revision 8575 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Marc Hoffman 2007-03-31 17:14:59 +00:00 committed by Diego Biurrun
parent b83f7eb2ce
commit c6bdc90890
1 changed files with 1 additions and 2 deletions

View File

@ -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;
}
}