From 012aa12a6bff8333da2165256bae312f6844ab65 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 22 Jun 2012 14:13:21 +0200 Subject: [PATCH] lavfi/drawtext: remove unnecessary parentheses in init() --- libavfilter/vf_drawtext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c index 484916f952..df23d9688c 100644 --- a/libavfilter/vf_drawtext.c +++ b/libavfilter/vf_drawtext.c @@ -394,7 +394,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) dtext->class = &drawtext_class; av_opt_set_defaults(dtext); - if ((err = (av_set_options_string(dtext, args, "=", ":"))) < 0) { + if ((err = av_set_options_string(dtext, args, "=", ":")) < 0) { av_log(ctx, AV_LOG_ERROR, "Error parsing options string: '%s'\n", args); return err; }