summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>2001-03-31 01:55:37 (GMT)
committerhobbs <hobbs>2001-03-31 01:55:37 (GMT)
commitc7da30a5b481d451af9554835e60b5203f439706 (patch)
treecb52b32a242d089d36fee6d5b469a0ef0f89a2a5
parent7e34c011f4854e4c2987c661ea58c81a69a26ce0 (diff)
downloadtcl-c7da30a5b481d451af9554835e60b5203f439706.zip
tcl-c7da30a5b481d451af9554835e60b5203f439706.tar.gz
tcl-c7da30a5b481d451af9554835e60b5203f439706.tar.bz2
* generic/tclTest.c (TestChannelCmd): added cast to mollify
Windows debug build.
-rw-r--r--generic/tclTest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c
index 1aa28d2..320f014 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -13,7 +13,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.23 2001/03/30 23:06:40 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclTest.c,v 1.24 2001/03/31 01:55:37 hobbs Exp $
*/
#define TCL_TEST
@@ -4524,7 +4524,7 @@ TestChannelCmd(clientData, interp, argc, argv)
return TCL_ERROR;
}
- TclFormatInt(buf, Tcl_GetChannelThread (chan));
+ TclFormatInt(buf, (long) Tcl_GetChannelThread(chan));
Tcl_AppendResult(interp, buf, (char *) NULL);
return TCL_OK;
}