diff options
author | Víctor Paesa <wzrlpy@arsystel.com> | 2007-04-01 17:20:23 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-04-01 17:20:23 +0000 |
commit | f321635a6eb6a826db7213f5c545a01b9c87104c (patch) | |
tree | a9a2b04e609b75a7fc0a4df0ab699dfc050ca0be | |
parent | 2de4f9eb476013f4e3f4d6a23c5ea2a8c059712a (diff) | |
download | ffmpeg-f321635a6eb6a826db7213f5c545a01b9c87104c.tar.gz |
Replace valid use of exit by _exit, patch by Víctor Paesa, wzrlpy arsystel com.
Originally committed as revision 8591 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | vhook/ppm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vhook/ppm.c b/vhook/ppm.c index 51badd58db..4b3a17f9f2 100644 --- a/vhook/ppm.c +++ b/vhook/ppm.c @@ -81,7 +81,7 @@ static rwpipe *rwpipe_open( int argc, char *argv[] ) close( output[ 1 ] ); execl("/bin/sh", "sh", "-c", command, (char*)NULL ); - exit( 255 ); + _exit( 255 ); } else { |