summaryrefslogtreecommitdiff
path: root/libavformat/http.c
diff options
context:
space:
mode:
authorStephan Holljes <klaxa1337@googlemail.com>2015-09-03 15:56:12 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-09-03 20:11:29 +0200
commit280d140cb02b91d213f7016152fa7ab7b2cb0e75 (patch)
tree15970eeff3dbe3579958ee68dde271dbba3352a5 /libavformat/http.c
parenta212a983c7f4faf06e600f32a165592dc5b6ae76 (diff)
lavf/http: Remove superfluous parenthesis.
Signed-off-by: Stephan Holljes <klaxa1337@googlemail.com> Reviewed-by: Ganesh Ajjanagadde <gajjanag@mit.edu> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/http.c')
-rw-r--r--libavformat/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/http.c b/libavformat/http.c
index c148a29ea7..20e942e147 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -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;