mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
[AArch64] Fix typo in error messages
Fix mispelling of PROT_ME to PROT_MTE in the error messages.
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user