1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

quiche: fix build error: use 'int' for port number

Follow-up to cb2dc1ba8
This commit is contained in:
Daniel Stenberg 2021-02-09 23:21:13 +01:00
parent 528f71c2ec
commit 69a396f593
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -180,7 +180,7 @@ CURLcode Curl_quic_connect(struct Curl_easy *data,
struct quicsocket *qs = &conn->hequic[sockindex]; struct quicsocket *qs = &conn->hequic[sockindex];
char *keylog_file = NULL; char *keylog_file = NULL;
char ipbuf[40]; char ipbuf[40];
long port; int port;
#ifdef DEBUG_QUICHE #ifdef DEBUG_QUICHE
/* initialize debug log callback only once */ /* initialize debug log callback only once */