From: Tim Peters Date: Fri, 1 Oct 2004 01:04:50 +0000 (+0000) Subject: Definition consistency. X-Git-Tag: v2.4b1~126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f85356ff76c0f9b1e8a15261c8a43d263577191;p=python Definition consistency. --- 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();