Fixed escape string

This commit is contained in:
Vysheng 2014-09-18 14:42:02 +04:00
parent 35f90fd0b9
commit d56cd2e2cb

View file

@ -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);