Browse Source

gdb: fix typo in debug output message

Spotted a minor type, a missing ')', in a debug message.
gdb-13-branch
Andrew Burgess 4 years ago
parent
commit
f9e2163a3e
  1. 2
      gdb/thread.c

2
gdb/thread.c

@ -836,7 +836,7 @@ set_running_thread (struct thread_info *tp, bool running)
threads_debug_printf ("thread: %s, running? %d%s",
tp->ptid.to_string ().c_str (), running,
(started ? " (started" : ""));
(started ? " (started)" : ""));
if (!running)
{

Loading…
Cancel
Save