X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fjson.c;h=10fa3c121011a88876a5b43097b70de89a608572;hb=26ad129e69fc7c800630dbd541dc2dcc8150c3a4;hp=8fd9c3a7a5e488397bbc5ac0885373eda02ec367;hpb=d951f1c78c2131fd466abec3c800fff7a4108c65;p=openvswitch diff --git a/lib/json.c b/lib/json.c index 8fd9c3a7..10fa3c12 100644 --- a/lib/json.c +++ b/lib/json.c @@ -832,7 +832,7 @@ json_string_unescape(const char *in, size_t in_len, char **outp) while (in < end) { if (*in == '"') { ds_clear(&out); - ds_put_cstr(&out, "quoted string may not include unescape \""); + ds_put_cstr(&out, "quoted string may not include unescaped \""); goto exit; } if (*in != '\\') {