aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Trojanek <trojanek@adacore.com>2022-08-09 15:09:53 +0200
committerMarc Poulhiès <poulhies@adacore.com>2022-09-06 09:14:21 +0200
commit96c20bf1e971f1fb41b4d6852888cc0dea9db009 (patch)
tree0988bc1f232fa7f56d6c2e954dadbb0c6e158f1b
parented7bc348b3a628dabf2264ad1805a675a85bcc66 (diff)
downloadgcc-96c20bf1e971f1fb41b4d6852888cc0dea9db009.zip
gcc-96c20bf1e971f1fb41b4d6852888cc0dea9db009.tar.gz
gcc-96c20bf1e971f1fb41b4d6852888cc0dea9db009.tar.bz2
[Ada] Tune message for illegal aspect Relaxed_Initialization
Error message about illegal aspect Relaxed_Initialization was lacking a whitespace character. gcc/ada/ * sem_ch13.adb (Analyze_Aspect_Relaxed_Initialization): Fix error template.
-rw-r--r--gcc/ada/sem_ch13.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/sem_ch13.adb b/gcc/ada/sem_ch13.adb
index 9403798..54b10dd 100644
--- a/gcc/ada/sem_ch13.adb
+++ b/gcc/ada/sem_ch13.adb
@@ -2293,7 +2293,7 @@ package body Sem_Ch13 is
then
Error_Msg_Name_1 := Nam;
Error_Msg_N
- ("expression of aspect %" &
+ ("expression of aspect % " &
"must be static", Aspect);
end if;