Fixed escape string
This commit is contained in:
parent
35f90fd0b9
commit
d56cd2e2cb
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue