From: Jack Jansen Date: Mon, 6 Aug 2001 15:32:30 +0000 (+0000) Subject: Oops, arg type for the glue routine was wrong. X-Git-Tag: v2.2a3~800 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4590049228fc8195ba4c123cc67794a1bfbd29d3;p=python Oops, arg type for the glue routine was wrong. --- diff --git a/Mac/Modules/macfsmodule.c b/Mac/Modules/macfsmodule.c index d1b8bb0bfc..d76f16071f 100644 --- a/Mac/Modules/macfsmodule.c +++ b/Mac/Modules/macfsmodule.c @@ -1283,7 +1283,7 @@ initmacfs() { PyObject *m, *d; - PyMac_INIT_TOOLBOX_OBJECT_CONVERT(Handle, PyMac_GetFSSpec); + PyMac_INIT_TOOLBOX_OBJECT_CONVERT(FSSpec, PyMac_GetFSSpec); /* Create the module and add the functions */ m = Py_InitModule("macfs", mfs_methods);