git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
459414b
)
lavfi/setfield: remove stray argument in av_log()
author
Stefano Sabatini
<stefasab@gmail.com>
Sat, 21 Apr 2012 08:28:37 +0000
(10:28 +0200)
committer
Stefano Sabatini
<stefasab@gmail.com>
Sat, 21 Apr 2012 10:32:50 +0000
(12:32 +0200)
Fix warning:
libavfilter/vf_setfield.c: In function ‘init’:
libavfilter/vf_setfield.c:64:20: warning: too many arguments for format [-Wformat-extra-args]
libavfilter/vf_setfield.c
patch
|
blob
|
history
diff --git
a/libavfilter/vf_setfield.c
b/libavfilter/vf_setfield.c
index
35ee2fc
..
00be599
100644
(file)
--- 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");
}
}