From: Jack Jansen Date: Fri, 31 May 1996 13:01:39 +0000 (+0000) Subject: PyMac_GetFixed() didn't return 1 on success X-Git-Tag: v1.4b1~87 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=31dd5c083bfca98df81cfc853de3b544e312c8a7;p=python PyMac_GetFixed() didn't return 1 on success --- diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index 3385d270b0..74fa2eef73 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -777,6 +777,7 @@ PyMac_GetFixed(PyObject *v, Fixed *f) if( !PyArg_Parse(v, "d", &d)) return 0; *f = (Fixed)(d * 0x10000); + return 1; } /* Convert a Point to a Python object */