diff options
author | Ronan Desplanques <desplanques@adacore.com> | 2024-02-13 09:50:55 +0100 |
---|---|---|
committer | Marc Poulhiès <poulhies@adacore.com> | 2024-05-14 10:19:55 +0200 |
commit | ab4a519a84611acc928ebbec920bd31e24993436 (patch) | |
tree | d31b8c7c013fdb1fdf069c4171e4066f157a0658 /gcc | |
parent | a9714dce8245f87c937a8fdef52db15ca6571525 (diff) | |
download | gcc-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.adb | 2 |
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; |