[Lldb-commits] [lldb] r167636 - /lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
Filipe Cabecinhas
me at filcab.net
Fri Nov 9 13:39:05 PST 2012
Author: filcab
Date: Fri Nov 9 15:39:05 2012
New Revision: 167636
URL: http://llvm.org/viewvc/llvm-project?rev=167636&view=rev
Log:
Removed use of non-standard escape character '\%'
Modified:
lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
Modified: lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp?rev=167636&r1=167635&r2=167636&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp Fri Nov 9 15:39:05 2012
@@ -845,7 +845,7 @@
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;
More information about the lldb-commits
mailing list