From e28108cbd71d75e545c7364b16ed47c1271eb36a Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 29 Jan 2012 20:13:18 -0500 Subject: adjust declaration --- Objects/typeobject.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Objects/typeobject.c b/Objects/typeobject.c index de1e445..e2316bd 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -2347,7 +2347,8 @@ static short slotoffsets[] = { #include "typeslots.inc" }; -PyObject* PyType_FromSpec(PyType_Spec *spec) +PyObject * +PyType_FromSpec(PyType_Spec *spec) { PyHeapTypeObject *res = (PyHeapTypeObject*)PyType_GenericAlloc(&PyType_Type, 0); char *res_start = (char*)res; -- cgit v0.12