summaryrefslogtreecommitdiffstats
path: root/generic/tclIOCmd.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-08-22 18:53:25 (GMT)
committernijtmans <nijtmans>2010-08-22 18:53:25 (GMT)
commitb29ec318d79701d5f1a59dda0b4517e2a91d4aa4 (patch)
tree67ed82232eba8af871d2080941a2d38f2764b518 /generic/tclIOCmd.c
parent83ab4a9db5c51f901442c409a6d33709ab4c223b (diff)
downloadtcl-b29ec318d79701d5f1a59dda0b4517e2a91d4aa4.zip
tcl-b29ec318d79701d5f1a59dda0b4517e2a91d4aa4.tar.gz
tcl-b29ec318d79701d5f1a59dda0b4517e2a91d4aa4.tar.bz2
Remove many type casts which are no longernecessary as a result of [Patch 3009403]: Signature of Tcl_GetHashKey, Tcl_(Create|Find)HashEntry
Diffstat (limited to 'generic/tclIOCmd.c')
-rw-r--r--generic/tclIOCmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIOCmd.c b/generic/tclIOCmd.c
index 2b45169..696b3ac 100644
--- a/generic/tclIOCmd.c
+++ b/generic/tclIOCmd.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIOCmd.c,v 1.68 2010/03/20 15:39:46 dkf Exp $
+ * RCS: @(#) $Id: tclIOCmd.c,v 1.69 2010/08/22 18:53:26 nijtmans Exp $
*/
#include "tclInt.h"
@@ -1271,7 +1271,7 @@ RegisterTcpServerInterpCleanup(
TcpAcceptCallbacksDeleteProc, hTblPtr);
}
- hPtr = Tcl_CreateHashEntry(hTblPtr, (char *) acceptCallbackPtr, &isNew);
+ hPtr = Tcl_CreateHashEntry(hTblPtr, acceptCallbackPtr, &isNew);
if (!isNew) {
Tcl_Panic("RegisterTcpServerCleanup: damaged accept record table");
}