From c7da30a5b481d451af9554835e60b5203f439706 Mon Sep 17 00:00:00 2001 From: hobbs Date: Sat, 31 Mar 2001 01:55:37 +0000 Subject: * generic/tclTest.c (TestChannelCmd): added cast to mollify Windows debug build. --- generic/tclTest.c | 4 ++-- 1 file 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; } -- cgit v0.12