warnings: Fix use of a non-standard escape.

llvm-svn: 143385
This commit is contained in:
Daniel Dunbar 2011-10-31 22:51:00 +00:00
parent dacdfb52b0
commit 108228bf5b
1 changed files with 1 additions and 1 deletions

View File

@ -1453,7 +1453,7 @@ DataExtractor::Dump (Stream *s,
{
switch (ch)
{
case '\e': s->Printf ("\\e"); break;
case '\033': s->Printf ("\\e"); break;
case '\a': s->Printf ("\\a"); break;
case '\b': s->Printf ("\\b"); break;
case '\f': s->Printf ("\\f"); break;