From f9e2163a3e48c6197ad4bb9fa3288ddb1029c959 Mon Sep 17 00:00:00 2001 From: Andrew Burgess Date: Thu, 24 Nov 2022 16:19:24 +0000 Subject: [PATCH] gdb: fix typo in debug output message Spotted a minor type, a missing ')', in a debug message. --- gdb/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.30.2