summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>2021-11-09 17:33:55 +0900
committerTatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>2021-11-09 17:33:55 +0900
commit5b3d02010da59a5fe9a3e4da40ab5e3960f0dd63 (patch)
tree38f71a29f6b1cb7d36ea65c42623858dcc218442
parentb3e1ed316062b7984a4a29e7b599f9b8640c7749 (diff)
downloadcurl-nghttp3-latest.tar.gz
Compile with the latest nghttp3nghttp3-latest
-rw-r--r--lib/vquic/ngtcp2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vquic/ngtcp2.c b/lib/vquic/ngtcp2.c
index a13b55ad7..1ffc09d57 100644
--- a/lib/vquic/ngtcp2.c
+++ b/lib/vquic/ngtcp2.c
@@ -805,7 +805,7 @@ CURLcode Curl_quic_connect(struct Curl_easy *data,
void Curl_quic_ver(char *p, size_t len)
{
const ngtcp2_info *ng2 = ngtcp2_version(0);
- nghttp3_info *ht3 = nghttp3_version(0);
+ const nghttp3_info *ht3 = nghttp3_version(0);
(void)msnprintf(p, len, "ngtcp2/%s nghttp3/%s",
ng2->version_str, ht3->version_str);
}