From 0f104823a09098e70d159639892e5fa3865d7c79 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 23 Sep 2019 10:51:00 +0200 Subject: quiche: The expression must be surrounded by parentheses PVS-Studio warning Fixes #4402 --- lib/vquic/quiche.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- cgit v1.2.1