Removed use of non-standard escape character '\%'
authorFilipe Cabecinhas <me@filcab.net>
Fri, 9 Nov 2012 21:39:05 +0000 (21:39 +0000)
committerFilipe Cabecinhas <me@filcab.net>
Fri, 9 Nov 2012 21:39:05 +0000 (21:39 +0000)
llvm-svn: 167636

lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp

index 1bfbb7a..2cd4688 100644 (file)
@@ -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;