[Python-checkins] CVS: python/dist/src/Modules parsermodule.c,2.42,2.43

Fred L. Drake python-dev@python.org
Tue, 4 Jul 2000 11:48:49 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv23771

Modified Files:
	parsermodule.c 
Log Message:

Remove warning about local variable possibly being using uninitialized;
noted by Marc-Andre Lemburg <mal@lemburg.com>.


Index: parsermodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/parsermodule.c,v
retrieving revision 2.42
retrieving revision 2.43
diff -C2 -r2.42 -r2.43
*** parsermodule.c	2000/07/03 18:07:43	2.42
--- parsermodule.c	2000/07/04 18:48:46	2.43
***************
*** 2087,2091 ****
  {
      int nch = NCH(tree);
!     int i, ok;
      node *last;
  
--- 2087,2091 ----
  {
      int nch = NCH(tree);
!     int i, ok = 1;
      node *last;