ffmpeg: don't assign "0" to pointer

Use NULL instead.  Found by sparse.
This commit is contained in:
Max Kellermann 2008-12-24 11:49:37 +01:00
parent fefd3d6fb7
commit 82ef85a309

View File

@ -106,7 +106,7 @@ static int64_t mpd_ffmpeg_seek(URLContext *h, int64_t pos, int whence)
static int mpd_ffmpeg_close(URLContext *h)
{
h->priv_data = 0;
h->priv_data = NULL;
return 0;
}