diff options
author | nijtmans <nijtmans> | 2010-08-22 18:53:25 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-08-22 18:53:25 (GMT) |
commit | b29ec318d79701d5f1a59dda0b4517e2a91d4aa4 (patch) | |
tree | 67ed82232eba8af871d2080941a2d38f2764b518 /generic/tclInterp.c | |
parent | 83ab4a9db5c51f901442c409a6d33709ab4c223b (diff) | |
download | tcl-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/tclInterp.c')
-rw-r--r-- | generic/tclInterp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInterp.c b/generic/tclInterp.c index c9959fc..e22133a 100644 --- a/generic/tclInterp.c +++ b/generic/tclInterp.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInterp.c,v 1.112 2010/03/05 14:34:04 dkf Exp $ + * RCS: @(#) $Id: tclInterp.c,v 1.113 2010/08/22 18:53:26 nijtmans Exp $ */ #include "tclInt.h" @@ -4008,7 +4008,7 @@ SetScriptLimitCallback( return; } - hashPtr = Tcl_CreateHashEntry(&iPtr->limit.callbacks, (char *) &key, + hashPtr = Tcl_CreateHashEntry(&iPtr->limit.callbacks, &key, &isNew); if (!isNew) { limitCBPtr = Tcl_GetHashValue(hashPtr); |