Skip to content
Snippets Groups Projects
Commit efe41983 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

cast NULL to correct type

Originally committed as revision 4210 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7bf9648e
No related branches found
No related tags found
No related merge requests found
...@@ -75,7 +75,7 @@ rwpipe *rwpipe_open( int argc, char *argv[] ) ...@@ -75,7 +75,7 @@ rwpipe *rwpipe_open( int argc, char *argv[] )
close( output[ 0 ] ); close( output[ 0 ] );
close( output[ 1 ] ); close( output[ 1 ] );
execl("/bin/sh", "sh", "-c", command, NULL ); execl("/bin/sh", "sh", "-c", command, (char*)NULL );
exit( 255 ); exit( 255 );
} }
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment