summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2023-06-03 22:43:57 +0200
committerTom de Vries <tdevries@suse.de>2023-06-03 22:43:57 +0200
commit2595faaa1c0d1be77ce85e7526ce39f862c6def5 (patch)
tree9edfa870d0756699075524f751527ee8ae5c2dff
parent9e92dbaa0cea5b71778f9698f797ad4112421c83 (diff)
[gdb/compile] Fix typo in debug message
In compile_object_load in gdb/compile/compile-object-load.c I came across: ... "Connectiong ELF symbol \"%s\" to the .toc section (%s)\n", ... Fix this typo by using "Connecting" instead. Reviewed-By: Tom Tromey <tom@tromey.com>
-rw-r--r--gdb/compile/compile-object-load.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/compile/compile-object-load.c b/gdb/compile/compile-object-load.c
index 12939b19e09..07cbbed4af9 100644
--- a/gdb/compile/compile-object-load.c
+++ b/gdb/compile/compile-object-load.c
@@ -757,7 +757,7 @@ compile_object_load (const compile_file_names &file_names,
bfd_set_gp_value(abfd.get(), toc_fallback->vma);
if (compile_debug)
gdb_printf (gdb_stdlog,
- "Connectiong ELF symbol \"%s\" to the .toc section (%s)\n",
+ "Connecting ELF symbol \"%s\" to the .toc section (%s)\n",
sym->name,
paddress (target_gdbarch (), sym->value));
continue;