diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-09-23 10:51:00 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-09-23 22:44:01 +0200 |
commit | 32fa043202376a89da33380e7d853a1775a16cdc (patch) | |
tree | 2afd8a33c5b3b65017e9855e4f0842574237cbd4 | |
parent | 89d972f24cbfab93d3b9be69417d1ea58e7024af (diff) |
quiche: The expression must be surrounded by parentheses
PVS-Studio warning
Fixes #4402
-rw-r--r-- | lib/vquic/quiche.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |