aboutsummaryrefslogtreecommitdiff
path: root/gdb/thread.c
diff options
context:
space:
mode:
authorAndrew Burgess <aburgess@redhat.com>2022-11-24 16:19:24 +0000
committerAndrew Burgess <aburgess@redhat.com>2022-11-24 16:19:24 +0000
commitf9e2163a3e48c6197ad4bb9fa3288ddb1029c959 (patch)
treef8a6ba1fdf200def7676c2518de1f1f2f2f66fe9 /gdb/thread.c
parentb611cce454a87a4f9466fb2bb766734059aab977 (diff)
downloadgdb-f9e2163a3e48c6197ad4bb9fa3288ddb1029c959.zip
gdb-f9e2163a3e48c6197ad4bb9fa3288ddb1029c959.tar.gz
gdb-f9e2163a3e48c6197ad4bb9fa3288ddb1029c959.tar.bz2
gdb: fix typo in debug output message
Spotted a minor type, a missing ')', in a debug message.
Diffstat (limited to 'gdb/thread.c')
-rw-r--r--gdb/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/thread.c b/gdb/thread.c
index d176d1d..cd7f1a7 100644
--- a/gdb/thread.c
+++ b/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)
{