aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipe Cabecinhas <me@filcab.net>2012-11-09 21:39:05 +0000
committerFilipe Cabecinhas <me@filcab.net>2012-11-09 21:39:05 +0000
commita4342a2bd711ac3de6608938f7baec5c3425b48e (patch)
treeabab3fb5611b260602e713e86ae107547a4f7f38
parent03789a9ec7fe4df8ca0dc0e516dfaad566dadcd8 (diff)
downloadllvm-a4342a2bd711ac3de6608938f7baec5c3425b48e.zip
llvm-a4342a2bd711ac3de6608938f7baec5c3425b48e.tar.gz
llvm-a4342a2bd711ac3de6608938f7baec5c3425b48e.tar.bz2
Removed use of non-standard escape character '\%'
llvm-svn: 167636
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
index 1bfbb7a..2cd46887 100644
--- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -845,7 +845,7 @@ ProcessGDBRemote::ConnectToDebugserver (const char *connect_url)
for (size_t idx = 0; idx < num_cmds; idx++)
{
StringExtractorGDBRemote response;
- printf ("Sending command: \%s.\n", GetExtraStartupCommands().GetArgumentAtIndex(idx));
+ printf ("Sending command: %s.\n", GetExtraStartupCommands().GetArgumentAtIndex(idx));
m_gdb_comm.SendPacketAndWaitForResponse (GetExtraStartupCommands().GetArgumentAtIndex(idx), response, false);
}
return error;