mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
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]
This commit is contained in:
parent
459414b4d9
commit
dd3043d1c0
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user