summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Mistachkin <joe@mistachkin.com>2009-11-02 05:14:08 (GMT)
committerJoe Mistachkin <joe@mistachkin.com>2009-11-02 05:14:08 (GMT)
commit1e583a7fa75fad88194efc07175027933f119930 (patch)
tree7111f8e8058b52e2d928f601f437c7921e0b1776
parenta7ee7c68c1945c3924c15bad6693af21314f4c12 (diff)
downloadtcl-1e583a7fa75fad88194efc07175027933f119930.zip
tcl-1e583a7fa75fad88194efc07175027933f119930.tar.gz
tcl-1e583a7fa75fad88194efc07175027933f119930.tar.bz2
compiler warning build break fix
-rw-r--r--win/tclWinConsole.c4
1 files 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;
}