mirror of
https://github.com/python/cpython.git
synced 2025-11-13 23:46:24 +00:00
Definition consistency.
This commit is contained in:
parent
1065f750cb
commit
6f85356ff7
1 changed files with 2 additions and 1 deletions
|
|
@ -15,7 +15,8 @@ typedef struct BLOCK {
|
||||||
PyObject *data[BLOCKLEN];
|
PyObject *data[BLOCKLEN];
|
||||||
} block;
|
} block;
|
||||||
|
|
||||||
static block *newblock(block *leftlink, block *rightlink) {
|
static block *
|
||||||
|
newblock(block *leftlink, block *rightlink) {
|
||||||
block *b = PyMem_Malloc(sizeof(block));
|
block *b = PyMem_Malloc(sizeof(block));
|
||||||
if (b == NULL) {
|
if (b == NULL) {
|
||||||
PyErr_NoMemory();
|
PyErr_NoMemory();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue