diff options
author | Andrew Burgess <aburgess@redhat.com> | 2022-11-24 16:19:24 +0000 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2022-11-24 16:19:24 +0000 |
commit | f9e2163a3e48c6197ad4bb9fa3288ddb1029c959 (patch) | |
tree | f8a6ba1fdf200def7676c2518de1f1f2f2f66fe9 /gdb/thread.c | |
parent | b611cce454a87a4f9466fb2bb766734059aab977 (diff) | |
download | gdb-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.c | 2 |
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) { |