summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-10-01 01:04:50 +0000
committerTim Peters <tim.peters@gmail.com>2004-10-01 01:04:50 +0000
commit6f85356ff76c0f9b1e8a15261c8a43d263577191 (patch)
tree0f69f1c751485bf56f10fed51baf6a3d1ff3103f
parent1065f750cb51f769ee26f68e84a429abd9b4958e (diff)
downloadcpython-git-6f85356ff76c0f9b1e8a15261c8a43d263577191.tar.gz
Definition consistency.
-rw-r--r--Modules/collectionsmodule.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/collectionsmodule.c b/Modules/collectionsmodule.c
index 3495f0cc7a..5856b11dd6 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();