]> granicus.if.org Git - curl/commitdiff
quiche: The expression must be surrounded by parentheses
authorDaniel Stenberg <daniel@haxx.se>
Mon, 23 Sep 2019 08:51:00 +0000 (10:51 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 23 Sep 2019 20:44:01 +0000 (22:44 +0200)
PVS-Studio warning
Fixes #4402

lib/vquic/quiche.c

index b5548cc2f3f143c4131117eae6ec214f7e4f6728..e8f80217b52399e28ff4183a4b63dbfe6b2158a4 100644 (file)
@@ -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,