diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-03-17 16:04:35 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-03-17 16:05:05 +0100 |
commit | ab9dc5ae2a86e42bb087986587e68cefdf76531d (patch) | |
tree | b97f0463e01d6ddb56201b560fddcb0658f4474e | |
parent | 7631f2b752a00680ac16742753dd7bd78c3a32ac (diff) |
writeout_json: add missing comma to fix the HTTP version
Follow-up to 04c03416e68fd635a15
-rw-r--r-- | src/tool_writeout_json.c | 2 |
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 */ }; |