commit | c821d1ecc0b0ebf481eeb9e83c9f93b272c20a22 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Jul 07 22:25:47 1998 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Jul 07 22:25:47 1998 +0000 |
tree | 31ba3223fea426ec71ffc6697b425a526cc8d791 | |
parent | 9f29990a90228cb227933178bd6ec81e8426939f [diff] |
Add a cast that a picky SGI compiler found was necessary.
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index bf7501e..fc52657 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c
@@ -514,7 +514,7 @@ ckfree(argv0); if (Tcl_AppInit(v->interp) != TCL_OK) - return (TkappObject *)Tkinter_Error(v); + return (TkappObject *)Tkinter_Error((PyObject *)v); EnableEventHook();