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:


_______________________________________________
lldb-commits mailing list
lldb-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to