[Lldb-commits] [lldb] r243421 - Fix typo in gdbremote.py
Pavel Labath
labath at google.com
Tue Jul 28 08:13:24 PDT 2015
Author: labath
Date: Tue Jul 28 10:13:23 2015
New Revision: 243421
URL: http://llvm.org/viewvc/llvm-project?rev=243421&view=rev
Log:
Fix typo in gdbremote.py
Modified:
lldb/trunk/examples/python/gdbremote.py
Modified: lldb/trunk/examples/python/gdbremote.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/python/gdbremote.py?rev=243421&r1=243420&r2=243421&view=diff
==============================================================================
--- lldb/trunk/examples/python/gdbremote.py (original)
+++ lldb/trunk/examples/python/gdbremote.py Tue Jul 28 10:13:23 2015
@@ -203,7 +203,7 @@ def start_gdb_log(debugger, command, res
return
if g_log_file:
- result.PutCString ('error: logging is already in progress with file "%s"', g_log_file)
+ result.PutCString ('error: logging is already in progress with file "%s"' % g_log_file)
else:
args_len = len(args)
if args_len == 0:
More information about the lldb-commits
mailing list