From: Palmer Dabbelt Date: Wed, 6 Dec 2023 17:52:31 +0000 (-0800) Subject: RISC-V: Fix "withand" in LEB128 error messages X-Git-Tag: binutils-2_42~690 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d86cb16645fbb8be6e92f8030e8bd885fe3ef44f;p=thirdparty%2Fbinutils-gdb.git RISC-V: Fix "withand" in LEB128 error messages This was split over multiple lines and ended up missing a space. Reported-by: David Abdurachmanov Signed-off-by: Palmer Dabbelt --- diff --git a/bfd/elfnn-riscv.c b/bfd/elfnn-riscv.c index 5c4bf4bc3cb..042266e791b 100644 --- a/bfd/elfnn-riscv.c +++ b/bfd/elfnn-riscv.c @@ -2521,7 +2521,7 @@ riscv_elf_relocate_section (bfd *output_bfd, else { msg = ("Mismatched R_RISCV_SET_ULEB128, it must be paired with" - "and applied before R_RISCV_SUB_ULEB128"); + " and applied before R_RISCV_SUB_ULEB128"); r = bfd_reloc_dangerous; } break; @@ -2537,7 +2537,7 @@ riscv_elf_relocate_section (bfd *output_bfd, else { msg = ("Mismatched R_RISCV_SUB_ULEB128, it must be paired with" - "and applied after R_RISCV_SET_ULEB128"); + " and applied after R_RISCV_SET_ULEB128"); r = bfd_reloc_dangerous; } break;