From 9e92dbaa0cea5b71778f9698f797ad4112421c83 Mon Sep 17 00:00:00 2001 From: Tom de Vries Date: Sat, 3 Jun 2023 22:43:57 +0200 Subject: [PATCH] [gdbserver] Fix typo in debug message I noticed in emit_ops_insns in gdbserver/linux-aarch64-low.cc: ... threads_debug_printf ("Adding %d instrucions at %s", ... Fix the typo by using "instructions" instead. Reviewed-By: Tom Tromey --- gdbserver/linux-aarch64-low.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdbserver/linux-aarch64-low.cc b/gdbserver/linux-aarch64-low.cc index 2ed6e95562c..2474a000ea3 100644 --- a/gdbserver/linux-aarch64-low.cc +++ b/gdbserver/linux-aarch64-low.cc @@ -2521,7 +2521,7 @@ emit_ops_insns (const uint32_t *start, int len) { CORE_ADDR buildaddr = current_insn_ptr; - threads_debug_printf ("Adding %d instrucions at %s", + threads_debug_printf ("Adding %d instructions at %s", len, paddress (buildaddr)); append_insns (&buildaddr, len, start); -- 2.30.2