gdb: fix typo in debug output message
authorAndrew Burgess <aburgess@redhat.com>
Thu, 24 Nov 2022 16:19:24 +0000 (16:19 +0000)
committerAndrew Burgess <aburgess@redhat.com>
Thu, 24 Nov 2022 16:19:24 +0000 (16:19 +0000)
Spotted a minor type, a missing ')', in a debug message.

gdb/thread.c

index d176d1d98954a6cfef6d13763250ae01681f1360..cd7f1a7d5bb429711f5a65c692d98a05dacec9e4 100644 (file)
@@ -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)
     {