Commit 012aa12a authored by Stefano Sabatini's avatar Stefano Sabatini

lavfi/drawtext: remove unnecessary parentheses in init()

parent 0567715a
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment