diff options
| author | nijtmans <nijtmans> | 2009-11-18 21:59:49 (GMT) |
|---|---|---|
| committer | nijtmans <nijtmans> | 2009-11-18 21:59:49 (GMT) |
| commit | 22766e7b4dbaae64d120157609608fe808dcd0e3 (patch) | |
| tree | ddefc8b4f539a5dd99629207908dae49d8e515db /win/tclWinConsole.c | |
| parent | 45b0ff09038e53c83b7ed6fc205f9d44a8e284a0 (diff) | |
| download | tcl-22766e7b4dbaae64d120157609608fe808dcd0e3.zip tcl-22766e7b4dbaae64d120157609608fe808dcd0e3.tar.gz tcl-22766e7b4dbaae64d120157609608fe808dcd0e3.tar.bz2 | |
Eliminate various gcc warnings (in -Wextra mode)
Diffstat (limited to 'win/tclWinConsole.c')
| -rw-r--r-- | win/tclWinConsole.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinConsole.c b/win/tclWinConsole.c index d88b285..880841a 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.20 2008/04/27 22:21:36 dkf Exp $ + * RCS: @(#) $Id: tclWinConsole.c,v 1.21 2009/11/18 21:59:49 nijtmans Exp $ */ #include "tclWinInt.h" @@ -1187,7 +1187,7 @@ ConsoleReaderThread( DWORD err; err = GetLastError(); - if (err == EOF) { + if (err == (DWORD)EOF) { infoPtr->readFlags = CONSOLE_EOF; } } |
