Commit 280d140c authored by Stephan Holljes's avatar Stephan Holljes Committed by Michael Niedermayer

lavf/http: Remove superfluous parenthesis.

Signed-off-by: 's avatarStephan Holljes <klaxa1337@googlemail.com>
Reviewed-by: 's avatarGanesh Ajjanagadde <gajjanag@mit.edu>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent a212a983
......@@ -401,7 +401,7 @@ static int http_handshake(URLContext *c)
av_log(c, AV_LOG_TRACE, "Lower protocol\n");
if ((ret = ffurl_handshake(cl)) > 0)
return 2 + ret;
if ((ret < 0))
if (ret < 0)
return ret;
ch->handshake_step = READ_HEADERS;
ch->is_connected_server = 1;
......
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