Browse Source

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]
tags/n0.11
Stefano Sabatini 13 years ago
parent
commit
dd3043d1c0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_setfield.c

+ 1
- 1
libavfilter/vf_setfield.c View File

@@ -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…
Cancel
Save