summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/win
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-09-04 22:19:18 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-09-04 22:19:18 (GMT)
commit06d2e1af3579f6a698a84b81dfda0bacb6263f7d (patch)
tree81882308f84c962886979dc619cd2454f6874529 /Mac/Modules/win
parentd157b3795b24b0fca2f75bfee4ac09c64a7b2f40 (diff)
downloadcpython-06d2e1af3579f6a698a84b81dfda0bacb6263f7d.zip
cpython-06d2e1af3579f6a698a84b81dfda0bacb6263f7d.tar.gz
cpython-06d2e1af3579f6a698a84b81dfda0bacb6263f7d.tar.bz2
Regenerated without default int return types.
Diffstat (limited to 'Mac/Modules/win')
-rw-r--r--Mac/Modules/win/_Winmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/win/_Winmodule.c b/Mac/Modules/win/_Winmodule.c
index 8eecd1a..5d597ac 100644
--- a/Mac/Modules/win/_Winmodule.c
+++ b/Mac/Modules/win/_Winmodule.c
@@ -82,7 +82,7 @@ PyObject *WinObj_New(WindowPtr itself)
}
return (PyObject *)it;
}
-WinObj_Convert(PyObject *v, WindowPtr *p_itself)
+int WinObj_Convert(PyObject *v, WindowPtr *p_itself)
{
if (v == Py_None) { *p_itself = NULL; return 1; }