diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/errorout.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/errorout.adb b/src/errorout.adb index c00e46e05..98a844c7b 100644 --- a/src/errorout.adb +++ b/src/errorout.adb @@ -208,9 +208,9 @@ package body Errorout is No_Source_File_Entry, 0, 0, 0)); Report_Handler.Message ("error limit reached"); Report_Handler.Message_End.all; - else - Nbr_Errors := Nbr_Errors + 1; end if; + + Nbr_Errors := Nbr_Errors + 1; end if; -- Limit the number of errors. |