Fix typo in error message.
authorChristoph Mallon <christoph.mallon@gmx.de>
Thu, 28 Aug 2008 11:20:39 +0000 (11:20 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Thu, 28 Aug 2008 11:20:39 +0000 (11:20 +0000)
[r21532]

parser.c

index ab0e6ef..56bad07 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -3377,7 +3377,7 @@ warn_about_long_long:
                                }
                        } else if ((type_specifiers & SPECIFIER_SIGNED) &&
                                  (type_specifiers & SPECIFIER_UNSIGNED)) {
-                               errorf(HERE, "signed and unsigned specifiers gives");
+                               errorf(HERE, "signed and unsigned specifiers given");
                        } else if (type_specifiers & (SPECIFIER_SIGNED | SPECIFIER_UNSIGNED)) {
                                errorf(HERE, "only integer types can be signed or unsigned");
                        } else {