diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2007-08-13 08:41:51 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-08-13 08:41:51 +0000 |
commit | 8838141268e48a6a0519332b4c21d06c6b52bb7d (patch) | |
tree | 9f1f5ae531666a9d292fd4117696e3e6c201d280 | |
parent | 9d4edf966e39d77ffc3b085d1081c97ad85696f6 (diff) | |
download | ffmpeg-8838141268e48a6a0519332b4c21d06c6b52bb7d.tar.gz |
Make ffserver -h exit 0.
patch by Stefano Sabatini, stefano.sabatini-lala poste it
Originally committed as revision 10103 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ffserver.c b/ffserver.c index c397d4b0de..f8ccfcb077 100644 --- a/ffserver.c +++ b/ffserver.c @@ -4443,7 +4443,7 @@ int main(int argc, char **argv) case '?': case 'h': show_help(); - exit(1); + exit(0); case 'n': no_launch = 1; break; |