From 1e583a7fa75fad88194efc07175027933f119930 Mon Sep 17 00:00:00 2001 From: Joe Mistachkin Date: Mon, 2 Nov 2009 05:14:08 +0000 Subject: compiler warning build break fix --- win/tclWinConsole.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win/tclWinConsole.c b/win/tclWinConsole.c index 56920bf..7d729e2 100644 --- a/win/tclWinConsole.c +++ b/win/tclWinConsole.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinConsole.c,v 1.11.2.3 2006/03/28 21:02:37 hobbs Exp $ + * RCS: @(#) $Id: tclWinConsole.c,v 1.11.2.4 2009/11/02 05:14:08 mistachkin Exp $ */ #include "tclWinInt.h" @@ -706,7 +706,7 @@ ConsoleInputProc( */ if (ReadConsole(infoPtr->handle, (LPVOID) buf, (DWORD) bufSize, &count, - (LPOVERLAPPED) NULL) == TRUE) { + NULL) == TRUE) { buf[count] = '\0'; return count; } -- cgit v0.12