Remove warning about local variable possibly being using uninitialized;
noted by Marc-Andre Lemburg <mal@lemburg.com>.
This commit is contained in:
parent
1f5871e834
commit
7797d3692b
|
@ -2086,7 +2086,7 @@ static int
|
|||
validate_arglist(node *tree)
|
||||
{
|
||||
int nch = NCH(tree);
|
||||
int i, ok;
|
||||
int i, ok = 1;
|
||||
node *last;
|
||||
|
||||
if (nch <= 0)
|
||||
|
|
Loading…
Reference in New Issue