Skip to content

Commit

Permalink
avfilter: Fix printf format string conversion specifier
Browse files Browse the repository at this point in the history
libavfilter/avfilter.c:224:9: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 5 has type ‘int’ [-Wformat]
  • Loading branch information
DonDiego committed Jul 25, 2012
1 parent 6a433fd commit 49c45a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavfilter/avfilter.c
Expand Up @@ -222,7 +222,7 @@ void ff_dlog_link(void *ctx, AVFilterLink *link, int end)
av_get_channel_layout_string(buf, sizeof(buf), -1, link->channel_layout); av_get_channel_layout_string(buf, sizeof(buf), -1, link->channel_layout);


av_dlog(ctx, av_dlog(ctx,
"link[%p r:%"PRId64" cl:%s fmt:%-16s %-16s->%-16s]%s", "link[%p r:%d cl:%s fmt:%-16s %-16s->%-16s]%s",
link, link->sample_rate, buf, link, link->sample_rate, buf,
av_get_sample_fmt_name(link->format), av_get_sample_fmt_name(link->format),
link->src ? link->src->filter->name : "", link->src ? link->src->filter->name : "",
Expand Down

0 comments on commit 49c45a2

Please sign in to comment.