Skip to content

Commit f9e2163

Browse files
committed
gdb: fix typo in debug output message
Spotted a minor type, a missing ')', in a debug message.
1 parent b611cce commit f9e2163

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gdb/thread.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ set_running_thread (struct thread_info *tp, bool running)
836836

837837
threads_debug_printf ("thread: %s, running? %d%s",
838838
tp->ptid.to_string ().c_str (), running,
839-
(started ? " (started" : ""));
839+
(started ? " (started)" : ""));
840840

841841
if (!running)
842842
{

0 commit comments

Comments
 (0)