Commit 263e31a0 authored by diego's avatar diego

Replace valid use of exit by _exit, patch by Víctor Paesa, wzrlpy arsystel com.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8591 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8dbb59fb
...@@ -81,7 +81,7 @@ static rwpipe *rwpipe_open( int argc, char *argv[] ) ...@@ -81,7 +81,7 @@ static rwpipe *rwpipe_open( int argc, char *argv[] )
close( output[ 1 ] ); close( output[ 1 ] );
execl("/bin/sh", "sh", "-c", command, (char*)NULL ); execl("/bin/sh", "sh", "-c", command, (char*)NULL );
exit( 255 ); _exit( 255 );
} }
else else
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment