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) {
eprintf ("\\\\");
break;
case '"':
eprintf ("\"");
eprintf ("\\\"");
break;
default:
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