mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-29 18:53:02 +00:00
vsrc_testsrc: Fix assignments in if()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
659546b42d
commit
6f88d2d786
@ -248,7 +248,7 @@ static int color_config_props(AVFilterLink *inlink)
|
||||
if (av_image_check_size(test->w, test->h, 0, ctx) < 0)
|
||||
return AVERROR(EINVAL);
|
||||
|
||||
if (ret = config_props(inlink) < 0)
|
||||
if ((ret = config_props(inlink)) < 0)
|
||||
return ret;
|
||||
|
||||
av_log(ctx, AV_LOG_VERBOSE, "color:0x%02x%02x%02x%02x\n",
|
||||
|
Loading…
Reference in New Issue
Block a user