aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-03-17 16:04:35 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-03-17 16:05:05 +0100
commitab9dc5ae2a86e42bb087986587e68cefdf76531d (patch)
treeb97f0463e01d6ddb56201b560fddcb0658f4474e /src
parent7631f2b752a00680ac16742753dd7bd78c3a32ac (diff)
writeout_json: add missing comma to fix the HTTP version
Follow-up to 04c03416e68fd635a15
Diffstat (limited to 'src')
-rw-r--r--src/tool_writeout_json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_writeout_json.c b/src/tool_writeout_json.c
index 99252ecb8..703cbbde8 100644
--- a/src/tool_writeout_json.c
+++ b/src/tool_writeout_json.c
@@ -34,7 +34,7 @@ static const char *http_version[] = {
"0", /* CURL_HTTP_VERSION_NONE */
"1", /* CURL_HTTP_VERSION_1_0 */
"1.1", /* CURL_HTTP_VERSION_1_1 */
- "2" /* CURL_HTTP_VERSION_2 */
+ "2", /* CURL_HTTP_VERSION_2 */
"3" /* CURL_HTTP_VERSION_3 */
};