]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
objc-act.c (is_public): Fix typo in message.
authorMatthias Klose <doko@debian.org>
Sat, 24 Jan 2004 14:21:15 +0000 (14:21 +0000)
committerMatthias Klose <doko@gcc.gnu.org>
Sat, 24 Jan 2004 14:21:15 +0000 (14:21 +0000)
2004-01-24  Matthias Klose  <doko@debian.org>

* objc/objc-act.c (is_public): Fix typo in message.

From-SVN: r76511

gcc/ChangeLog
gcc/objc/objc-act.c

index 972c509e9525191c39ec87db73bdc03334775e05..3c23b46d1ccb91be60bb0da3d325c16fbb07ce4f 100644 (file)
@@ -1,3 +1,7 @@
+2004-01-24  Matthias Klose  <doko@debian.org>
+
+       * objc/objc-act.c (is_public): Fix typo in message.
+
 2004-01-23  Richard Henderson  <rth@redhat.com>
 
         PR opt/12941
index 3ad0cc60ee150657e958217559c03376d7b04591..dea85b32d34b832cc0a18979a07aef4a1db919b5 100644 (file)
@@ -5893,7 +5893,7 @@ is_public (expr, identifier)
                 {
                   int private = is_private (decl);
                   if (private)
-                    error ("instance variable '%s' si declared private",
+                    error ("instance variable '%s' is declared private",
                            IDENTIFIER_POINTER (DECL_NAME (decl)));
 
                   return !private;