From: Benjamin Peterson Date: Mon, 30 Jan 2012 01:13:18 +0000 (-0500) Subject: adjust declaration X-Git-Tag: v3.2.3rc1~108 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e28108cbd71d75e545c7364b16ed47c1271eb36a;p=thirdparty%2FPython%2Fcpython.git adjust declaration --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index de1e445ec099..e2316bd0ad48 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;