Remove warning about local variable possibly being using uninitialized;
noted by Marc-Andre Lemburg <mal@lemburg.com>.
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 @@
 validate_arglist(node *tree)
 {
     int nch = NCH(tree);
-    int i, ok;
+    int i, ok = 1;
     node *last;
 
     if (nch <= 0)