[Python-checkins] python/dist/src/Modules collectionsmodule.c, 1.23, 1.24

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Fri Oct 1 03:04:58 CEST 2004


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9904/Modules

Modified Files:
	collectionsmodule.c 
Log Message:
Definition consistency.


Index: collectionsmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/collectionsmodule.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- collectionsmodule.c	1 Oct 2004 01:03:29 -0000	1.23
+++ collectionsmodule.c	1 Oct 2004 01:04:50 -0000	1.24
@@ -15,7 +15,8 @@
 	PyObject *data[BLOCKLEN];
 } block;
 
-static block *newblock(block *leftlink, block *rightlink) {
+static block *
+newblock(block *leftlink, block *rightlink) {
 	block *b = PyMem_Malloc(sizeof(block));
 	if (b == NULL) {
 		PyErr_NoMemory();



More information about the Python-checkins mailing list