[6/9] Fix codespell false positive by string splitting

Message ID 20260603100516.144737-7-tdevries@suse.de
State New
Headers
Series Make gdb dir codespell-clean |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_gdb_build--master-arm success Build passed
linaro-tcwg-bot/tcwg_gdb_build--master-aarch64 success Build passed
linaro-tcwg-bot/tcwg_gdb_check--master-arm success Test passed
linaro-tcwg-bot/tcwg_gdb_check--master-aarch64 success Test passed

Commit Message

Tom de Vries June 3, 2026, 10:05 a.m. UTC
  Fix codespell false positive in gdb dir, by string splitting.
---
 gdb/ada-lang.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
index 823ec6d667e..ea7c29bbde7 100644
--- a/gdb/ada-lang.c
+++ b/gdb/ada-lang.c
@@ -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)