summaryrefslogtreecommitdiffstats
path: root/Modules/collectionsmodule.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-10-01 01:04:50 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-10-01 01:04:50 (GMT)
commit6f85356ff76c0f9b1e8a15261c8a43d263577191 (patch)
tree0f69f1c751485bf56f10fed51baf6a3d1ff3103f /Modules/collectionsmodule.c
parent1065f750cb51f769ee26f68e84a429abd9b4958e (diff)
downloadcpython-6f85356ff76c0f9b1e8a15261c8a43d263577191.zip
cpython-6f85356ff76c0f9b1e8a15261c8a43d263577191.tar.gz
cpython-6f85356ff76c0f9b1e8a15261c8a43d263577191.tar.bz2
Definition consistency.
Diffstat (limited to 'Modules/collectionsmodule.c')
-rw-r--r--Modules/collectionsmodule.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/collectionsmodule.c b/Modules/collectionsmodule.c
index 3495f0c..5856b11 100644
--- a/Modules/collectionsmodule.c
+++ b/Modules/collectionsmodule.c
@@ -15,7 +15,8 @@ typedef struct BLOCK {
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();