summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-09-23 10:51:00 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-09-23 10:51:00 +0200
commit0f104823a09098e70d159639892e5fa3865d7c79 (patch)
tree8970cb48e33abf3fed41182b56637aee2cfb1bc9
parent235aafd3c31ff891f954db4bd8dec9ce6c221ece (diff)
downloadcurl-0f104823a09098e70d159639892e5fa3865d7c79.tar.gz
quiche: The expression must be surrounded by parentheses
PVS-Studio warning Fixes #4402
-rw-r--r--lib/vquic/quiche.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vquic/quiche.c b/lib/vquic/quiche.c
index 4d53d1535..fa226ec8b 100644
--- a/lib/vquic/quiche.c
+++ b/lib/vquic/quiche.c
@@ -50,7 +50,7 @@
#define QUIC_MAX_STREAMS (256*1024)
#define QUIC_MAX_DATA (1*1024*1024)
-#define QUIC_IDLE_TIMEOUT 60 * 1000 /* milliseconds */
+#define QUIC_IDLE_TIMEOUT (60 * 1000) /* milliseconds */
static CURLcode process_ingress(struct connectdata *conn,
curl_socket_t sockfd,