Definition consistency.
This commit is contained in:
parent
1065f750cb
commit
6f85356ff7
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue