summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2001-03-31 01:55:37 (GMT)
committerhobbs <hobbs>2001-03-31 01:55:37 (GMT)
commit859c107881658f3a7d0ec9cb9c85d26ebbe0e2cd (patch)
treecb52b32a242d089d36fee6d5b469a0ef0f89a2a5 /generic/tclTest.c
parent848416435f324c3871a5fe040ed12599af32a630 (diff)
downloadtcl-859c107881658f3a7d0ec9cb9c85d26ebbe0e2cd.zip
tcl-859c107881658f3a7d0ec9cb9c85d26ebbe0e2cd.tar.gz
tcl-859c107881658f3a7d0ec9cb9c85d26ebbe0e2cd.tar.bz2
* generic/tclTest.c (TestChannelCmd): added cast to mollify
Windows debug build.
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 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;
}