From: Daniel Stenberg Date: Mon, 23 Sep 2019 08:51:00 +0000 (+0200) Subject: quiche: The expression must be surrounded by parentheses X-Git-Tag: curl-7_67_0~132 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=32fa043202376a89da33380e7d853a1775a16cdc;p=thirdparty%2Fcurl.git quiche: The expression must be surrounded by parentheses PVS-Studio warning Fixes #4402 --- diff --git a/lib/vquic/quiche.c b/lib/vquic/quiche.c index b5548cc2f3..e8f80217b5 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,