https://gcc.gnu.org/g:ab4a519a84611acc928ebbec920bd31e24993436
commit r15-462-gab4a519a84611acc928ebbec920bd31e24993436 Author: Ronan Desplanques <desplanq...@adacore.com> Date: Tue Feb 13 09:50:55 2024 +0100 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. Diff: --- gcc/ada/sem_warn.adb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/ada/sem_warn.adb b/gcc/ada/sem_warn.adb index ccf9067c6720..2de3f8668b05 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;