diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-10 08:53:07 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-10 08:53:07 +0000 |
commit | efe419837f1824de49f10a002568fbd1410f0918 (patch) | |
tree | 36f4b0eba96783568e0e9e7240ca5ab25d4c1591 | |
parent | 7bf9648ebc7a8988f414ad284dab16ac9f55bfac (diff) | |
download | ffmpeg-streaming-efe419837f1824de49f10a002568fbd1410f0918.zip ffmpeg-streaming-efe419837f1824de49f10a002568fbd1410f0918.tar.gz |
cast NULL to correct type
Originally committed as revision 4210 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 45e7208..807e4a9 100644 --- a/vhook/ppm.c +++ b/vhook/ppm.c @@ -75,7 +75,7 @@ rwpipe *rwpipe_open( int argc, char *argv[] ) close( output[ 0 ] ); close( output[ 1 ] ); - execl("/bin/sh", "sh", "-c", command, NULL ); + execl("/bin/sh", "sh", "-c", command, (char*)NULL ); exit( 255 ); } else |