This commit is contained in:
Omar Polo 2021-02-10 13:13:17 +00:00
parent 002a84a123
commit 2d34f732f1
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ parse_portno(const char *p)
n = strtonum(p, 0, UINT16_MAX, &errstr);
if (errstr != NULL)
yylineno("port number is %s: %s", errstr, p);
yyerror("port number is %s: %s", errstr, p);
return n;
}