From: Jack Jansen Date: Mon, 16 Jun 2003 13:56:05 +0000 (+0000) Subject: This wasn't ansified. Fixed. X-Git-Tag: v2.3c1~417 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e748f0358fd7d7ed59ae892889e7e88694d0bf02;p=python This wasn't ansified. Fixed. --- diff --git a/Mac/Modules/ColorPickermodule.c b/Mac/Modules/ColorPickermodule.c index e7d00451df..12a632f82a 100644 --- a/Mac/Modules/ColorPickermodule.c +++ b/Mac/Modules/ColorPickermodule.c @@ -37,9 +37,7 @@ static char cp_GetColor__doc__[] = ; static PyObject * -cp_GetColor(self, args) - PyObject *self; /* Not used */ - PyObject *args; +cp_GetColor(PyObject *self, PyObject *args) { RGBColor inColor, outColor; Boolean ok; @@ -68,9 +66,7 @@ static char cp_module_documentation[] = "" ; -void initColorPicker(); - -void initColorPicker() +void initColorPicker(void) { PyObject *m;