1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

writeout_json: add missing comma to fix the HTTP version

Follow-up to 04c03416e6
This commit is contained in:
Daniel Stenberg 2020-03-17 16:04:35 +01:00
parent 7631f2b752
commit ab9dc5ae2a
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View 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 */
};