diff options
author | Sergey Rybin <rybin@adacore.com> | 2005-06-16 10:55:22 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-06-16 10:55:22 +0200 |
commit | f3d771b30e960aa00eac92f2b8b385f38cc07541 (patch) | |
tree | f77373d5259ce7e85e3157ab374210ee5c32e278 /gcc/ada/styleg-c.adb | |
parent | d026bfa56c0fd9643db6a70fd7f7f90ac7b005f7 (diff) | |
download | gcc-f3d771b30e960aa00eac92f2b8b385f38cc07541.zip gcc-f3d771b30e960aa00eac92f2b8b385f38cc07541.tar.gz gcc-f3d771b30e960aa00eac92f2b8b385f38cc07541.tar.bz2 |
styleg-c.adb (Body_With_No_Spec): Remove ':' from warning message.
2005-06-14 Sergey Rybin <rybin@adacore.com>
* styleg-c.adb (Body_With_No_Spec): Remove ':' from warning message.
From-SVN: r101066
Diffstat (limited to 'gcc/ada/styleg-c.adb')
-rw-r--r-- | gcc/ada/styleg-c.adb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/styleg-c.adb b/gcc/ada/styleg-c.adb index bc1a13b..e0f9881 100644 --- a/gcc/ada/styleg-c.adb +++ b/gcc/ada/styleg-c.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2004 Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2005 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -63,7 +63,7 @@ package body Styleg.C is end; end if; - Error_Msg_N ("(style): subprogram body has no previous spec", N); + Error_Msg_N ("(style) subprogram body has no previous spec", N); end if; end Body_With_No_Spec; @@ -189,7 +189,7 @@ package body Styleg.C is Cas := Mixed_Case; end if; - Nlen := Length_Of_Name (Chars (Ref)); + Nlen := Length_Of_Name (Chars (Ref)); -- Now check if we have the right casing |