From ab4a519a84611acc928ebbec920bd31e24993436 Mon Sep 17 00:00:00 2001 From: Ronan Desplanques <desplanques@adacore.com> Date: Tue, 13 Feb 2024 09:50:55 +0100 Subject: [PATCH] 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. --- 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; -- GitLab