[Python-checkins] python/dist/src/Modules posixmodule.c,2.256,2.257

loewis@users.sourceforge.net loewis@users.sourceforge.net
Tue, 10 Sep 2002 08:04:44 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv2321/Modules

Modified Files:
	posixmodule.c 
Log Message:
Add missing return statement.


Index: posixmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/posixmodule.c,v
retrieving revision 2.256
retrieving revision 2.257
diff -C2 -d -r2.256 -r2.257
*** posixmodule.c	10 Sep 2002 09:16:13 -0000	2.256
--- posixmodule.c	10 Sep 2002 15:04:41 -0000	2.257
***************
*** 1425,1428 ****
--- 1425,1429 ----
  	*sec = intval;
  	*usec = 0;
+         return 0;
  }