summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-08-13 16:58:18 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-08-13 23:15:49 +0200
commitaae490229b733a41223d8b806103cedf6bd757a0 (patch)
tree1f21ad3ec276c9bcc29ff09b16bd92b0732a28cf /docs
parentf3c34bf83c0bc60a97b76eba4f2b8f3d75310104 (diff)
downloadcurl-aae490229b733a41223d8b806103cedf6bd757a0.tar.gz
curl_version_info: make the quic_version a const
Follow-up from 1a2df1518ad8653f Closes #4222
Diffstat (limited to 'docs')
-rw-r--r--docs/libcurl/curl_version_info.32
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/curl_version_info.3 b/docs/libcurl/curl_version_info.3
index 4476677b4..de56c4c6d 100644
--- a/docs/libcurl/curl_version_info.3
+++ b/docs/libcurl/curl_version_info.3
@@ -84,7 +84,7 @@ typedef struct {
(MAJOR << 16) | (MINOR << 8) | PATCH */
const char *nghttp2_version; /* human readable string. */
- char *quic_version; /* human readable quic (+ HTTP/3) library +
+ const char *quic_version; /* human readable quic (+ HTTP/3) library +
version or NULL */
} curl_version_info_data;