diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-04-21 10:28:37 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-04-21 12:32:50 +0200 |
commit | dd3043d1c0c1dafffbc98c97d5eabb07c545c22a (patch) | |
tree | 115383c13db0b9149a3f33cb36430740bdc6139c | |
parent | 459414b4d935dab2a07f75268995771a7ee21a0d (diff) | |
download | ffmpeg-dd3043d1c0c1dafffbc98c97d5eabb07c545c22a.tar.gz |
lavfi/setfield: remove stray argument in av_log()
Fix warning:
libavfilter/vf_setfield.c: In function ‘init’:
libavfilter/vf_setfield.c:64:20: warning: too many arguments for format [-Wformat-extra-args]
-rw-r--r-- | libavfilter/vf_setfield.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_setfield.c b/libavfilter/vf_setfield.c index 35ee2fcc17..00be599265 100644 --- a/libavfilter/vf_setfield.c +++ b/libavfilter/vf_setfield.c @@ -61,7 +61,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) return AVERROR(EINVAL); } av_log(ctx, AV_LOG_WARNING, - "Using -1/0/1 is deprecated, use auto/tff/bff/prog\n", args); + "Using -1/0/1 is deprecated, use auto/tff/bff/prog\n"); } } |