aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRonan Desplanques <desplanques@adacore.com>2024-02-13 09:50:55 +0100
committerMarc Poulhiès <poulhies@adacore.com>2024-05-14 10:19:55 +0200
commitab4a519a84611acc928ebbec920bd31e24993436 (patch)
treed31b8c7c013fdb1fdf069c4171e4066f157a0658 /gcc
parenta9714dce8245f87c937a8fdef52db15ca6571525 (diff)
downloadgcc-ab4a519a84611acc928ebbec920bd31e24993436.zip
gcc-ab4a519a84611acc928ebbec920bd31e24993436.tar.gz
gcc-ab4a519a84611acc928ebbec920bd31e24993436.tar.bz2
ada: Fix typo in diagnostic message
A previous change introduced an error in the diagnostic message about overlapping actuals. This commit fixes this. gcc/ada/ * sem_warn.adb (Warn_On_Overlapping_Actuals): Fix typo.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ada/sem_warn.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/sem_warn.adb b/gcc/ada/sem_warn.adb
index ccf9067..2de3f86 100644
--- a/gcc/ada/sem_warn.adb
+++ b/gcc/ada/sem_warn.adb
@@ -3865,7 +3865,7 @@ package body Sem_Warn is
-- This is one of the messages
Error_Msg_FE ("<.i<writable actual for & overlaps with"
- & "actual for &", Act1, Form1);
+ & " actual for &", Act1, Form1);
end if;
end if;
end if;