summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2010-02-22 23:31:41 (GMT)
committernijtmans <nijtmans@noemail.net>2010-02-22 23:31:41 (GMT)
commitaba533834a28ec0d0ca62f346df7ce6f2cea88e7 (patch)
treee6177ca61b1da75b2580be08eb4087ac9b62e192 /generic/tclTest.c
parent19e585209e891e3d724d4b78c2e33f75d059501f (diff)
downloadtcl-aba533834a28ec0d0ca62f346df7ce6f2cea88e7.zip
tcl-aba533834a28ec0d0ca62f346df7ce6f2cea88e7.tar.gz
tcl-aba533834a28ec0d0ca62f346df7ce6f2cea88e7.tar.bz2
Remove unnecessary EXTERN's, which already
are in the global stub table. Use @EXEEXT@ in stead of @EXT_SUFFIX@ Use -DBUILD_tcl in Makefile for CYGWIN Use EXTERN to control CYGWIN exported symbols Remove some unnecessary type casts. FossilOrigin-Name: ede6fe7b2094c4f981ad7e13174d2afb9064e904
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 793dccc..3232834 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.144 2010/02/05 20:53:12 nijtmans Exp $
+ * RCS: @(#) $Id: tclTest.c,v 1.145 2010/02/22 23:31:41 nijtmans Exp $
*/
#undef STATIC_BUILD
@@ -6563,7 +6563,7 @@ TestHashSystemHashCmd(
Tcl_DeleteHashTable(&hash);
return TCL_ERROR;
}
- Tcl_SetHashValue(hPtr, (ClientData) INT2PTR(i+42));
+ Tcl_SetHashValue(hPtr, INT2PTR(i+42));
}
if (hash.numEntries != limit) {