[AArch64] Fix typo in error messages
authorLuis Machado <luis.machado@linaro.org>
Tue, 21 Dec 2021 18:05:52 +0000 (15:05 -0300)
committerLuis Machado <luis.machado@linaro.org>
Tue, 21 Dec 2021 18:05:52 +0000 (15:05 -0300)
Fix mispelling of PROT_ME to PROT_MTE in the error messages.

gdb/nat/aarch64-mte-linux-ptrace.c

index 524cdbee4a2868390aaad16d1e5ed911ae8d0fdb..6d386424db8c43ec0d172bfa234ddc9fd45308a4 100644 (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;