diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2016-03-31 10:03:04 +0200 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2016-03-31 10:10:58 +0200 | 
| commit | 541027876d9fc82792803326a1dc112c1a65398c (patch) | |
| tree | 49415aa52a8c04d7ebd9c0464fcd7470a4d14dc2 /lib | |
| parent | b22a9547364a5aa0b939feb8e29fd072f615272f (diff) | |
http: remove ((expression)) double parentheses
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/http.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/lib/http.c b/lib/http.c index 73d662569..94a1e936e 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1515,9 +1515,9 @@ CURLcode Curl_http_done(struct connectdata *conn,                        entire operation is complete */       !conn->bits.retry &&       !data->set.connect_only && -     ((http->readbytecount + -       data->req.headerbytecount - -       data->req.deductheadercount)) <= 0) { +     (http->readbytecount + +      data->req.headerbytecount - +      data->req.deductheadercount) <= 0) {      /* If this connection isn't simply closed to be retried, AND nothing was         read from the HTTP server (that counts), this can't be right so we         return an error here */ | 
