From b4ece549471292e8ba5b00c7514c1183b71ff902 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 6 Dec 2014 15:29:23 +0100 Subject: avfilter/avcodec: use NULL instead of 0 for pointer Signed-off-by: Michael Niedermayer --- libavfilter/avcodec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/avcodec.c') diff --git a/libavfilter/avcodec.c b/libavfilter/avcodec.c index e0d90154ee..def735f84d 100644 --- a/libavfilter/avcodec.c +++ b/libavfilter/avcodec.c @@ -53,7 +53,7 @@ AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_frame(const AVFrame *frame int64_t layout = av_frame_get_channel_layout(frame); if (layout && av_get_channel_layout_nb_channels(layout) != av_frame_get_channels(frame)) { - av_log(0, AV_LOG_ERROR, "Layout indicates a different number of channels than actually present\n"); + av_log(NULL, AV_LOG_ERROR, "Layout indicates a different number of channels than actually present\n"); return NULL; } -- cgit v1.2.3