From: Luis Machado Date: Tue, 21 Dec 2021 18:05:52 +0000 (-0300) Subject: [AArch64] Fix typo in error messages X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8a7cd1ebd7b9587ab7dba3f61262e7b029dfe384;p=binutils-gdb.git [AArch64] Fix typo in error messages Fix mispelling of PROT_ME to PROT_MTE in the error messages. --- diff --git a/gdb/nat/aarch64-mte-linux-ptrace.c b/gdb/nat/aarch64-mte-linux-ptrace.c index 524cdbee4a2..6d386424db8 100644 --- a/gdb/nat/aarch64-mte-linux-ptrace.c +++ b/gdb/nat/aarch64-mte-linux-ptrace.c @@ -44,7 +44,7 @@ aarch64_mte_linux_peek_error (int error) perror_with_name (_("Couldn't fetch allocation tags")); break; case EOPNOTSUPP: - perror_with_name (_("PROT_ME not enabled for requested address")); + perror_with_name (_("PROT_MTE not enabled for requested address")); default: perror_with_name (_("Unknown MTE error")); break; @@ -66,7 +66,7 @@ aarch64_mte_linux_poke_error (int error) perror_with_name (_("Couldn't store allocation tags")); break; case EOPNOTSUPP: - perror_with_name (_("PROT_ME not enabled for requested address")); + perror_with_name (_("PROT_MTE not enabled for requested address")); default: perror_with_name (_("Unknown MTE error")); break;