From 7797d3692be88297a5646970baac51d6b9c957fb Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 4 Jul 2000 18:48:46 +0000 Subject: [PATCH] Remove warning about local variable possibly being using uninitialized; noted by Marc-Andre Lemburg . --- Modules/parsermodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 7a99283a7f..8baa693f9c 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -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) -- 2.40.0