[Ffmpeg-cvslog] r8575 - trunk/libavcodec/dct-test.c
diego
subversion
Sat Mar 31 19:14:59 CEST 2007
Author: diego
Date: Sat Mar 31 19:14:59 2007
New Revision: 8575
Modified:
trunk/libavcodec/dct-test.c
Log:
Remove illegal call to exit().
patch by Marc Hoffman, mmh pleasantst com
Modified: trunk/libavcodec/dct-test.c
==============================================================================
--- trunk/libavcodec/dct-test.c (original)
+++ trunk/libavcodec/dct-test.c Sat Mar 31 19:14:59 2007
@@ -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;
}
}
More information about the ffmpeg-cvslog
mailing list