commit | 4590049228fc8195ba4c123cc67794a1bfbd29d3 | [log] [tgz] |
---|---|---|
author | Jack Jansen <jack.jansen@cwi.nl> | Mon Aug 06 15:32:30 2001 +0000 |
committer | Jack Jansen <jack.jansen@cwi.nl> | Mon Aug 06 15:32:30 2001 +0000 |
tree | 8b6cf38738707fc9b900d9e9917ca96c6fff8ce2 | |
parent | e6e745fc49f1c8c3e143c1d84cbb8812835bfdec [diff] [blame] |
Oops, arg type for the glue routine was wrong.
diff --git a/Mac/Modules/macfsmodule.c b/Mac/Modules/macfsmodule.c index d1b8bb0..d76f160 100644 --- a/Mac/Modules/macfsmodule.c +++ b/Mac/Modules/macfsmodule.c
@@ -1283,7 +1283,7 @@ { 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);