]> granicus.if.org Git - curl/commitdiff
http: remove ((expression)) double parentheses
authorDaniel Stenberg <daniel@haxx.se>
Thu, 31 Mar 2016 08:03:04 +0000 (10:03 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 31 Mar 2016 08:10:58 +0000 (10:10 +0200)
lib/http.c

index 73d66256923dd8785d092b80debe63e7919e8484..94a1e936e7259f66f8f89cd4f2d91bb37cb187c1 100644 (file)
@@ -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 */