Commit 28b97861 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 0ee5d570
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment