From 127a1d928108c65f0a3f22ce60c502cf89760755 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Sun, 17 May 2015 05:27:58 +0200 Subject: error: fix double colon in error message (from previous commit). --- src/vhdl/errorout.adb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/vhdl/errorout.adb b/src/vhdl/errorout.adb index 2f6228708..ac2c3cefb 100644 --- a/src/vhdl/errorout.adb +++ b/src/vhdl/errorout.adb @@ -146,20 +146,20 @@ package body Errorout is case Level is when Note => - Put ("note"); + Put ("note:"); when Warning => if Flags.Warn_Error then Nbr_Errors := Nbr_Errors + 1; else - Put ("warning"); + Put ("warning:"); end if; when Error => Nbr_Errors := Nbr_Errors + 1; when Fatal => - Put ("fatal"); + Put ("fatal:"); end case; - Put (": "); + Put (' '); Put_Line (Msg); end Report_Msg; -- cgit v1.2.3