diff options
Diffstat (limited to 'gdb/nat')
-rw-r--r-- | gdb/nat/aarch64-mte-linux-ptrace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/nat/aarch64-mte-linux-ptrace.c b/gdb/nat/aarch64-mte-linux-ptrace.c index 524cdbe..6d38642 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; |