(parsermodule.c): Fixed sloppy typo: '==' -> '='
This commit is contained in:
parent
4b7d5a49ab
commit
e1607a8d0e
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue