[Lldb-commits] [lldb] r143385 - /lldb/trunk/source/Core/DataExtractor.cpp
Daniel Dunbar
daniel at zuster.org
Mon Oct 31 15:51:00 PDT 2011
Author: ddunbar
Date: Mon Oct 31 17:51:00 2011
New Revision: 143385
URL: http://llvm.org/viewvc/llvm-project?rev=143385&view=rev
Log:
warnings: Fix use of a non-standard escape.
Modified:
lldb/trunk/source/Core/DataExtractor.cpp
Modified: lldb/trunk/source/Core/DataExtractor.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/DataExtractor.cpp?rev=143385&r1=143384&r2=143385&view=diff
==============================================================================
--- lldb/trunk/source/Core/DataExtractor.cpp (original)
+++ lldb/trunk/source/Core/DataExtractor.cpp Mon Oct 31 17:51:00 2011
@@ -1453,7 +1453,7 @@
{
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;
More information about the lldb-commits
mailing list