wrc: parser_error() does not need a trailing '\n'.

This commit is contained in:
Francois Gouget 2008-11-24 18:29:17 +01:00 committed by Alexandre Julliard
parent 0ee5d57079
commit 28b97861b9
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ static unsigned long xstrtoul(const char *nptr, char **endptr, int base)
errno = 0;
l = strtoul(nptr, endptr, base);
if (l == ULONG_MAX && errno == ERANGE)
parser_error("integer constant %s is too large\n", nptr);
parser_error("integer constant %s is too large", nptr);
return l;
}