diff options
author | Tristan Gingold | 2015-05-17 05:27:58 +0200 |
---|---|---|
committer | Tristan Gingold | 2015-05-17 05:27:58 +0200 |
commit | 127a1d928108c65f0a3f22ce60c502cf89760755 (patch) | |
tree | e5884fdcf512609394e2f7c7ad8966caa28e243a | |
parent | e1306c7beea185286fd233e1940afe2cd967ae49 (diff) | |
download | ghdl-127a1d928108c65f0a3f22ce60c502cf89760755.tar.gz ghdl-127a1d928108c65f0a3f22ce60c502cf89760755.tar.bz2 ghdl-127a1d928108c65f0a3f22ce60c502cf89760755.zip |
error: fix double colon in error message (from previous commit).
-rw-r--r-- | src/vhdl/errorout.adb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vhdl/errorout.adb b/src/vhdl/errorout.adb index 2f62287..ac2c3ce 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; |