(parsermodule.c): Fixed sloppy typo: '==' -> '='

This commit is contained in:
Fred Drake 1996-09-11 21:58:26 +00:00
parent 4b7d5a49ab
commit e1607a8d0e
1 changed files with 2 additions and 2 deletions

View File

@ -1174,8 +1174,8 @@ validate_varargslist(tree)
if (res && (remaining >= 4)) {
res = validate_comma(CHILD(tree, pos));
if (--remaining == 3)
res == (validate_star(CHILD(tree, pos + 1))
&& validate_star(CHILD(tree, pos + 2)));
res = (validate_star(CHILD(tree, pos + 1))
&& validate_star(CHILD(tree, pos + 2)));
else
validate_ntype(CHILD(tree, pos + 1), DOUBLESTAR);
}