Commit 10afcf10 authored by Vysheng's avatar Vysheng

Fixed escape string

parent 847b1833
...@@ -418,7 +418,7 @@ static void print_escaped_string (const char *str, int len) { ...@@ -418,7 +418,7 @@ static void print_escaped_string (const char *str, int len) {
eprintf ("\\\\"); eprintf ("\\\\");
break; break;
case '"': case '"':
eprintf ("\""); eprintf ("\\\"");
break; break;
default: default:
eprintf ("\\x%02x", (int)(unsigned char)*str); eprintf ("\\x%02x", (int)(unsigned char)*str);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment