Definition consistency.

This commit is contained in:
Tim Peters 2004-10-01 01:04:50 +00:00
parent 1065f750cb
commit 6f85356ff7
1 changed files with 2 additions and 1 deletions

View File

@ -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();