[Lldb-commits] [lldb] r143386 - /lldb/trunk/source/Core/DataExtractor.cpp

Daniel Dunbar daniel at zuster.org
Mon Oct 31 15:51:02 PDT 2011


Author: ddunbar
Date: Mon Oct 31 17:51:02 2011
New Revision: 143386

URL: http://llvm.org/viewvc/llvm-project?rev=143386&view=rev
Log:
warnings: Fix a non-standard escape sequence.

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=143386&r1=143385&r2=143386&view=diff
==============================================================================
--- lldb/trunk/source/Core/DataExtractor.cpp (original)
+++ lldb/trunk/source/Core/DataExtractor.cpp Mon Oct 31 17:51:02 2011
@@ -1527,7 +1527,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