From: Michael Niedermayer Date: Tue, 10 May 2005 08:53:07 +0000 (+0000) Subject: cast NULL to correct type X-Git-Tag: v0.5~13960 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=efe419837f1824de49f10a002568fbd1410f0918;p=platform%2Fupstream%2Flibav.git cast NULL to correct type Originally committed as revision 4210 to svn://svn.ffmpeg.org/ffmpeg/trunk --- 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