Kaydet (Commit) 7797d369 authored tarafından Fred Drake's avatar Fred Drake

Remove warning about local variable possibly being using uninitialized;

noted by Marc-Andre Lemburg <mal@lemburg.com>.
üst 1f5871e8
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment