[AArch64] Fix typo in error messages

Fix mispelling of PROT_ME to PROT_MTE in the error messages.
This commit is contained in:
Luis Machado 2021-12-21 15:05:52 -03:00
parent ae47e3097e
commit 8a7cd1ebd7

View File

@ -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;