Remove warning about local variable possibly being using uninitialized;

noted by Marc-Andre Lemburg <mal@lemburg.com>.
This commit is contained in:
Fred Drake 2000-07-04 18:48:46 +00:00
parent 1f5871e834
commit 7797d3692b
1 changed files with 1 additions and 1 deletions

View File

@ -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)