summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2010-08-22 18:53:24 (GMT)
committernijtmans <nijtmans@noemail.net>2010-08-22 18:53:24 (GMT)
commite86aca46c40f5ea1aaa10c4e8ecda1d86e259bb7 (patch)
tree67ed82232eba8af871d2080941a2d38f2764b518 /generic/tclTest.c
parent3e3d619c33eccada45a46becc2c81d38b92ab012 (diff)
downloadtcl-e86aca46c40f5ea1aaa10c4e8ecda1d86e259bb7.zip
tcl-e86aca46c40f5ea1aaa10c4e8ecda1d86e259bb7.tar.gz
tcl-e86aca46c40f5ea1aaa10c4e8ecda1d86e259bb7.tar.bz2
Remove many type casts which are no longernecessary as a result of [Patch 3009403]: Signature of Tcl_GetHashKey, Tcl_(Create|Find)HashEntry
FossilOrigin-Name: 0ca694ea6522833fe5c429c99b8a6b4c0e554589
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r--generic/tclTest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c
index 5c7dfbf..036a50c 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclTest.c,v 1.152 2010/07/24 06:39:52 nijtmans Exp $
+ * RCS: @(#) $Id: tclTest.c,v 1.153 2010/08/22 18:53:26 nijtmans Exp $
*/
#undef STATIC_BUILD
@@ -6539,7 +6539,7 @@ TestHashSystemHashCmd(
}
for (i=0 ; i<limit ; i++) {
- hPtr = Tcl_CreateHashEntry(&hash, (char *) INT2PTR(i), &isNew);
+ hPtr = Tcl_CreateHashEntry(&hash, INT2PTR(i), &isNew);
if (!isNew) {
Tcl_SetObjResult(interp, Tcl_NewIntObj(i));
Tcl_AppendToObj(Tcl_GetObjResult(interp)," creation problem",-1);