Browse Source

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
tags/v0.5
Víctor Paesa Diego Biurrun 18 years ago
parent
commit
f321635a6e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      vhook/ppm.c

+ 1
- 1
vhook/ppm.c View File

@@ -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
{ {


Loading…
Cancel
Save