From: Fred Drake Date: Tue, 4 Jul 2000 18:48:46 +0000 (+0000) Subject: Remove warning about local variable possibly being using uninitialized; X-Git-Tag: v2.0b1~1089 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7797d3692be88297a5646970baac51d6b9c957fb;p=thirdparty%2FPython%2Fcpython.git Remove warning about local variable possibly being using uninitialized; noted by Marc-Andre Lemburg . --- diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 7a99283a7f32..8baa693f9ccf 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)