From: Christoph Mallon Date: Thu, 28 Aug 2008 11:20:39 +0000 (+0000) Subject: Fix typo in error message. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=156ffa98b09c70e1066a1b32a4e7b30fd30674b2;p=cparser Fix typo in error message. [r21532] --- diff --git a/parser.c b/parser.c index ab0e6ef..56bad07 100644 --- 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 {