summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-08-06 15:32:30 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-08-06 15:32:30 (GMT)
commit4590049228fc8195ba4c123cc67794a1bfbd29d3 (patch)
tree8b6cf38738707fc9b900d9e9917ca96c6fff8ce2 /Mac
parente6e745fc49f1c8c3e143c1d84cbb8812835bfdec (diff)
downloadcpython-4590049228fc8195ba4c123cc67794a1bfbd29d3.zip
cpython-4590049228fc8195ba4c123cc67794a1bfbd29d3.tar.gz
cpython-4590049228fc8195ba4c123cc67794a1bfbd29d3.tar.bz2
Oops, arg type for the glue routine was wrong.
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Modules/macfsmodule.c2
1 files changed, 1 insertions, 1 deletions
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 @@ 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);