From: Daniel Stenberg Date: Tue, 9 Feb 2021 22:21:13 +0000 (+0100) Subject: quiche: fix build error: use 'int' for port number X-Git-Tag: curl-7_76_0~183 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=69a396f59362eba6821645fd0e8c7ad8f23fc1ab;p=thirdparty%2Fcurl.git quiche: fix build error: use 'int' for port number Follow-up to cb2dc1ba8 --- diff --git a/lib/vquic/quiche.c b/lib/vquic/quiche.c index d138dd3a24..9b476cbd2a 100644 --- a/lib/vquic/quiche.c +++ b/lib/vquic/quiche.c @@ -180,7 +180,7 @@ CURLcode Curl_quic_connect(struct Curl_easy *data, struct quicsocket *qs = &conn->hequic[sockindex]; char *keylog_file = NULL; char ipbuf[40]; - long port; + int port; #ifdef DEBUG_QUICHE /* initialize debug log callback only once */