aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2023-11-14 15:00:49 +0100
committerTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2023-11-14 15:03:36 +0100
commit5baaed487bfcee02400cafc7b21a4ef417c65c29 (patch)
tree0b846f12ba1a504bbd578413adbfe4954a393748 /gdb
parent3f57217b8fc6e081edc09ce7c2cee3850345c012 (diff)
downloadgdb-5baaed487bfcee02400cafc7b21a4ef417c65c29.zip
gdb-5baaed487bfcee02400cafc7b21a4ef417c65c29.tar.gz
gdb-5baaed487bfcee02400cafc7b21a4ef417c65c29.tar.bz2
gdb: regenerate target-delegates.c
I ran './make-target-delegates.py' and there is one minor difference, where an older style declaration is converted to a newer initialization style. Add this change. Approved-By: Pedro Alves <pedro@palves.net>
Diffstat (limited to 'gdb')
-rw-r--r--gdb/target-delegates.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c
index c5540c3..a27b66d 100644
--- a/gdb/target-delegates.c
+++ b/gdb/target-delegates.c
@@ -2291,9 +2291,9 @@ dummy_target::supports_set_thread_options (gdb_thread_options arg0)
bool
debug_target::supports_set_thread_options (gdb_thread_options arg0)
{
- bool result;
gdb_printf (gdb_stdlog, "-> %s->supports_set_thread_options (...)\n", this->beneath ()->shortname ());
- result = this->beneath ()->supports_set_thread_options (arg0);
+ bool result
+ = this->beneath ()->supports_set_thread_options (arg0);
gdb_printf (gdb_stdlog, "<- %s->supports_set_thread_options (", this->beneath ()->shortname ());
target_debug_print_gdb_thread_options (arg0);
gdb_puts (") = ", gdb_stdlog);