summaryrefslogtreecommitdiffstats
path: root/Modules/parsermodule.c
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-07-04 18:48:46 (GMT)
committerFred Drake <fdrake@acm.org>2000-07-04 18:48:46 (GMT)
commit7797d3692be88297a5646970baac51d6b9c957fb (patch)
tree2bf0e3bcbc38e61669f396f0777fabcac93526dc /Modules/parsermodule.c
parent1f5871e834879c7e325be3fe4e81a60ed20389bf (diff)
downloadcpython-7797d3692be88297a5646970baac51d6b9c957fb.zip
cpython-7797d3692be88297a5646970baac51d6b9c957fb.tar.gz
cpython-7797d3692be88297a5646970baac51d6b9c957fb.tar.bz2
Remove warning about local variable possibly being using uninitialized;
noted by Marc-Andre Lemburg <mal@lemburg.com>.
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r--Modules/parsermodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c
index 7a99283..8baa693 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)