summaryrefslogtreecommitdiff
path: root/libavformat/nsvdec.c
diff options
context:
space:
mode:
authorMaksym Veremeyenko <verem@m1stereo.tv>2011-02-16 09:52:44 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-02-16 23:00:50 +0100
commitc4461aa83c2947c1f8a454dacb12b91b780191e1 (patch)
tree0fbcdfdf161ad118f9b67e3db1034957124cca0b /libavformat/nsvdec.c
parent33af787d8a892b51b7386a051f0cc0174c7e34ea (diff)
fix nsvdec.c compilation if DEBUG macro defined
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 41cdc1ff1e86f1bfb935e1bde53ccc9c645ff71e)
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' &&