summaryrefslogtreecommitdiffstats
path: root/generic/tclMain.c
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2011-03-12 15:06:47 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2011-03-12 15:06:47 (GMT)
commitda07e275b37faecb755a5d1cd6e55bf5dced5b6e (patch)
treeed891ab3e00ea5888426f25d675aff2d89a00b1d /generic/tclMain.c
parentcc586c9ab635695477a2735f73aa166f4ecb4a5e (diff)
downloadtcl-da07e275b37faecb755a5d1cd6e55bf5dced5b6e.zip
tcl-da07e275b37faecb755a5d1cd6e55bf5dced5b6e.tar.gz
tcl-da07e275b37faecb755a5d1cd6e55bf5dced5b6e.tar.bz2
Adjust ckalloc/ckfree macros to greatly reduce number of explicit casts in
rest of Tcl source code. No ABI change. API change *should* be harmless.
Diffstat (limited to 'generic/tclMain.c')
-rw-r--r--generic/tclMain.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tclMain.c b/generic/tclMain.c
index 7caadd1..1b3b091 100644
--- a/generic/tclMain.c
+++ b/generic/tclMain.c
@@ -548,8 +548,7 @@ Tcl_MainEx(
if (tty) {
Prompt(interp, &prompt);
}
- isPtr = (InteractiveState *)
- ckalloc(sizeof(InteractiveState));
+ isPtr = ckalloc(sizeof(InteractiveState));
isPtr->input = inChannel;
isPtr->tty = tty;
isPtr->commandPtr = commandPtr;
@@ -577,7 +576,7 @@ Tcl_MainEx(
if (isPtr->input != NULL) {
Tcl_DeleteChannelHandler(isPtr->input, StdinProc, isPtr);
}
- ckfree((char *) isPtr);
+ ckfree(isPtr);
}
inChannel = Tcl_GetStdChannel(TCL_STDIN);
outChannel = Tcl_GetStdChannel(TCL_STDOUT);