mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-10 16:20:16 +01:00
[trace] Correct a couple of typos.
A couple of minor typos in the escaped characters strings.
This commit is contained in:
parent
1f2fec7388
commit
ca39c4bf7f
1 changed files with 2 additions and 2 deletions
|
|
@ -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 '\\':
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue