summaryrefslogtreecommitdiffstats
path: root/win/tclAppInit.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-09-23 21:40:45 (GMT)
committernijtmans <nijtmans>2010-09-23 21:40:45 (GMT)
commita186bdb4397f2d831f6bb04e453fdf14e21c9c97 (patch)
tree1a72c5d9af6e0014b67853684fda5e42710dcef6 /win/tclAppInit.c
parent8691a6254e1afce0248c4ff5807236e23e1167a0 (diff)
downloadtcl-a186bdb4397f2d831f6bb04e453fdf14e21c9c97.zip
tcl-a186bdb4397f2d831f6bb04e453fdf14e21c9c97.tar.gz
tcl-a186bdb4397f2d831f6bb04e453fdf14e21c9c97.tar.bz2
Make Tcl_SetPanicProc and Tcl_GetStringResult callable without stubs, just as Tcl_SetVar.
Diffstat (limited to 'win/tclAppInit.c')
-rw-r--r--win/tclAppInit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c
index 2db61b0..48962c0 100644
--- a/win/tclAppInit.c
+++ b/win/tclAppInit.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclAppInit.c,v 1.32 2010/09/23 09:18:59 nijtmans Exp $
+ * RCS: @(#) $Id: tclAppInit.c,v 1.33 2010/09/23 21:40:45 nijtmans Exp $
*/
/* TODO: This file does not compile in UNICODE mode.
@@ -139,7 +139,7 @@ int
Tcl_AppInit(
Tcl_Interp *interp) /* Interpreter for application. */
{
- if (Tcl_Init(interp) == TCL_ERROR) {
+ if ((Tcl_Init)(interp) == TCL_ERROR) {
return TCL_ERROR;
}