Commit 27570e21 authored by Anton Khirnov's avatar Anton Khirnov

fifo: fix parenthesis placement.

parent 394a2a04
......@@ -78,7 +78,7 @@ static int request_frame(AVFilterLink *outlink)
int ret;
if (!fifo->root.next) {
if ((ret = ff_request_frame(outlink->src->inputs[0]) < 0))
if ((ret = ff_request_frame(outlink->src->inputs[0])) < 0)
return ret;
}
......
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