[trace] Correct a couple of typos.

A couple of minor typos in the escaped characters strings.
This commit is contained in:
Chris Wilson 2008-12-20 15:35:40 +00:00
parent 1f2fec7388
commit ca39c4bf7f

View file

@ -1326,7 +1326,7 @@ _encode_string_literal (char *out, int max,
break;
case '\r':
*out++ = '\\';
*out++ = 'n';
*out++ = 'r';
max -= 2;
case '\t':
*out++ = '\\';
@ -1340,7 +1340,7 @@ _encode_string_literal (char *out, int max,
break;
case '\f':
*out++ = '\\';
*out++ = 'r';
*out++ = 'f';
max -= 2;
break;
case '\\':