From: Andrew Burgess Date: Thu, 24 Nov 2022 16:19:24 +0000 (+0000) Subject: gdb: fix typo in debug output message X-Git-Tag: gdb-13-branchpoint~293 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f9e2163a3e48c6197ad4bb9fa3288ddb1029c959;p=thirdparty%2Fbinutils-gdb.git gdb: fix typo in debug output message Spotted a minor type, a missing ')', in a debug message. --- diff --git a/gdb/thread.c b/gdb/thread.c index d176d1d9895..cd7f1a7d5bb 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) {