ivlpp: Fixed incorrect lineno

Signed-off-by: Michael Witten <mfwitten@mit.edu>
This commit is contained in:
Michael Witten 2008-02-15 00:03:59 -05:00 committed by Stephen Williams
parent 6103a72927
commit 73f8c2e68c
1 changed files with 1 additions and 1 deletions

View File

@ -742,7 +742,7 @@ static void do_define()
tail = strstr(cp+2, "*/");
if (tail == 0) {
fprintf(stderr, "%s:%u: Unterminated comment "
"in define\n", istack->path, istack->lineno);
"in define\n", istack->path, istack->lineno+1);
*cp = 0;
break;
}