]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[gdb] Fix codespell false positive by string splitting
authorTom de Vries <tdevries@suse.de>
Mon, 15 Jun 2026 11:24:08 +0000 (13:24 +0200)
committerTom de Vries <tdevries@suse.de>
Mon, 15 Jun 2026 11:24:08 +0000 (13:24 +0200)
Fix codespell false positive in gdb dir, by string splitting.

gdb/ada-lang.c

index 306fd4cdc8b75754e5550698f965bd432f74f30a..564e4d6194a836763e37f2fee5cf4456298d71fc 100644 (file)
@@ -9370,7 +9370,7 @@ ada_aggregate_component::dump (ui_file *stream, int depth)
   gdb_printf (stream, _("%*sAggregate\n"), depth, "");
   if (m_base != nullptr)
     {
-      gdb_printf (stream, _("%*swith delta\n"), depth + 1, "");
+      gdb_printf (stream, _("%*s" "with delta\n"), depth + 1, "");
       m_base->dump (stream, depth + 2);
     }
   for (const auto &item : m_components)