From 31dd5c083bfca98df81cfc853de3b544e312c8a7 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Fri, 31 May 1996 13:01:39 +0000 Subject: [PATCH] PyMac_GetFixed() didn't return 1 on success --- Mac/Python/macglue.c | 1 + 1 file changed, 1 insertion(+) 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 */ -- 2.50.1