Commit 82ef85a3 authored by Max Kellermann's avatar Max Kellermann

ffmpeg: don't assign "0" to pointer

Use NULL instead. Found by sparse.
parent fefd3d6f
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment