projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b611cce
)
gdb: fix typo in debug output message
author
Andrew Burgess
<aburgess@redhat.com>
Thu, 24 Nov 2022 16:19:24 +0000
(16:19 +0000)
committer
Andrew 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
patch
|
blob
|
history
diff --git
a/gdb/thread.c
b/gdb/thread.c
index d176d1d98954a6cfef6d13763250ae01681f1360..cd7f1a7d5bb429711f5a65c692d98a05dacec9e4 100644
(file)
--- 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)
{