sync with netbsd PR 8534, fix undefined C code.

Pointed out by: David A. Holland
This commit is contained in:
Alfred Perlstein 1999-10-07 08:41:55 +00:00
parent 14e34a55c3
commit 09ef98c6c0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=51979

View File

@ -1027,7 +1027,7 @@ yylex()
dostr1:
if (cbuf[cpos] == ' ') {
cpos++;
state = state == OSTR ? STR2 : ++state;
state = state == OSTR ? STR2 : state+1;
return (SP);
}
break;