diff options
author | hobbs <hobbs> | 2001-03-31 01:55:37 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-03-31 01:55:37 (GMT) |
commit | c7da30a5b481d451af9554835e60b5203f439706 (patch) | |
tree | cb52b32a242d089d36fee6d5b469a0ef0f89a2a5 /generic/tclTest.c | |
parent | 7e34c011f4854e4c2987c661ea58c81a69a26ce0 (diff) | |
download | tcl-c7da30a5b481d451af9554835e60b5203f439706.zip tcl-c7da30a5b481d451af9554835e60b5203f439706.tar.gz tcl-c7da30a5b481d451af9554835e60b5203f439706.tar.bz2 |
* generic/tclTest.c (TestChannelCmd): added cast to mollify
Windows debug build.
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r-- | generic/tclTest.c | 4 |
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; } |