summaryrefslogtreecommitdiff
path: root/libavformat/nsvdec.c
diff options
context:
space:
mode:
authorMaksym Veremeyenko <verem@m1stereo.tv>2011-02-16 09:52:44 +0200
committerRonald S. Bultje <rsbultje@gmail.com>2011-02-16 07:33:25 -0500
commit41cdc1ff1e86f1bfb935e1bde53ccc9c645ff71e (patch)
treeb9993d474cbcc07163eadf40b8d5de74e892e50d /libavformat/nsvdec.c
parent22ec6b738f1608e4b959fb655cf37c3343ec7e9f (diff)
fix nsvdec.c compilation if DEBUG macro defined
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/nsvdec.c')
-rw-r--r--libavformat/nsvdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c
index 9bf5636e5b..d20b226f2e 100644
--- a/libavformat/nsvdec.c
+++ b/libavformat/nsvdec.c
@@ -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' &&