X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/ccdc1577ef7fb32a5e30cb655337e7cd42b98987..20964c33f91dc49b9f1b97a85505dd69776fe41c:/src/location.c diff --git a/src/location.c b/src/location.c index 9960d623..a7494158 100644 --- a/src/location.c +++ b/src/location.c @@ -90,9 +90,9 @@ location_compute (location *loc, boundary *cur, char const *token, size_t size) loc->end = *cur; if (line == INT_MAX && loc->start.line != INT_MAX) - complain_at (*loc, Wother, _("line number overflow")); + complain (loc, Wother, _("line number overflow")); if (column == INT_MAX && loc->start.column != INT_MAX) - complain_at (*loc, Wother, _("column number overflow")); + complain (loc, Wother, _("column number overflow")); }