From: Ben Pfaff Date: Tue, 2 Mar 2010 21:38:47 +0000 (-0800) Subject: json: Fix typo in error message. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4bda8288fb2fba14d02359f636375ca128aaad02;p=openvswitch json: Fix typo in error message. --- 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 != '\\') {