]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
writeout_json: add missing comma to fix the HTTP version
authorDaniel Stenberg <daniel@haxx.se>
Tue, 17 Mar 2020 15:04:35 +0000 (16:04 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 17 Mar 2020 15:05:05 +0000 (16:05 +0100)
Follow-up to 04c03416e68fd635a15

src/tool_writeout_json.c

index 99252ecb803a54a6f01edc86d13e3da52e5b1da3..703cbbde87707abbb97bdaf5016a2e859ced352c 100644 (file)
@@ -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 */
 };