From 6f85356ff76c0f9b1e8a15261c8a43d263577191 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Fri, 1 Oct 2004 01:04:50 +0000 Subject: Definition consistency. --- Modules/collectionsmodule.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); -- cgit v0.12