Kaydet (Commit) 6f85356f authored tarafından Tim Peters's avatar Tim Peters

Definition consistency.

üst 1065f750
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment