mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +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];
|
||||
} 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…
Add table
Add a link
Reference in a new issue