From 32fa043202376a89da33380e7d853a1775a16cdc 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(-) (limited to 'lib') diff --git a/lib/vquic/quiche.c b/lib/vquic/quiche.c index b5548cc2f..e8f80217b 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.3