diff options
Diffstat (limited to 'gcc/ada/styleg.adb')
-rw-r--r-- | gcc/ada/styleg.adb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ada/styleg.adb b/gcc/ada/styleg.adb index 7b7f252..20945fb 100644 --- a/gcc/ada/styleg.adb +++ b/gcc/ada/styleg.adb @@ -499,7 +499,8 @@ package body Styleg is if Is_Box_Comment or else Style_Check_Comments_Spacing = 1 then - Error_Space_Required (Scan_Ptr + 2); + Error_Msg -- CODEFIX + ("(style) space required?c?", Scan_Ptr + 2); else Error_Msg -- CODEFIX ("(style) two spaces required?c?", Scan_Ptr + 2); @@ -526,7 +527,8 @@ package body Styleg is -- box comment. elsif not Is_Box_Comment then - Error_Space_Required (Scan_Ptr + 3); + Error_Msg -- CODEFIX + ("(style) space required?c?", Scan_Ptr + 3); end if; end if; end Check_Comment; |