From 4590049228fc8195ba4c123cc67794a1bfbd29d3 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 6 Aug 2001 15:32:30 +0000 Subject: [PATCH] Oops, arg type for the glue routine was wrong. --- Mac/Modules/macfsmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/Modules/macfsmodule.c b/Mac/Modules/macfsmodule.c index d1b8bb0bfc8..d76f16071f2 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);