Commit 41cdc1ff authored by Maksym Veremeyenko's avatar Maksym Veremeyenko Committed by Ronald S. Bultje

fix nsvdec.c compilation if DEBUG macro defined

Signed-off-by: 's avatarRonald S. Bultje <rsbultje@gmail.com>
parent 22ec6b73
......@@ -737,7 +737,7 @@ static int nsv_read_close(AVFormatContext *s)
static int nsv_probe(AVProbeData *p)
{
int i;
av_dlog(s, "nsv_probe(), buf_size %d\n", p->buf_size);
av_dlog(NULL, "nsv_probe(), buf_size %d\n", p->buf_size);
/* check file header */
/* streamed files might not have any header */
if (p->buf[0] == 'N' && p->buf[1] == 'S' &&
......
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