[FFmpeg-cvslog] lavfi/setfield: remove stray argument in av_log()

Stefano Sabatini git at videolan.org
Sat Apr 21 12:33:30 CEST 2012


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sat Apr 21 10:28:37 2012 +0200| [dd3043d1c0c1dafffbc98c97d5eabb07c545c22a] | committer: Stefano Sabatini

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]

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dd3043d1c0c1dafffbc98c97d5eabb07c545c22a
---

 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 35ee2fc..00be599 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");
         }
     }
 



More information about the ffmpeg-cvslog mailing list