diff options
Diffstat (limited to 'lldb/examples/python/gdbremote.py')
-rwxr-xr-x | lldb/examples/python/gdbremote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/gdbremote.py b/lldb/examples/python/gdbremote.py index 1832715b0e5..4cbfdb2ba33 100755 --- a/lldb/examples/python/gdbremote.py +++ b/lldb/examples/python/gdbremote.py @@ -203,7 +203,7 @@ def start_gdb_log(debugger, command, result, dict): 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: |