summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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();