diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-04-11 11:30:47 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-04-11 11:30:47 (GMT) |
commit | 90ca2f4448e5aba75ffe9b71d877b557264a90a0 (patch) | |
tree | a77961c94d12682c18a5853881ca33702c47ff13 | |
parent | 821193ec1ef8bacf91eb146890e3f81b0f49feeb (diff) | |
download | tcl-90ca2f4448e5aba75ffe9b71d877b557264a90a0.zip tcl-90ca2f4448e5aba75ffe9b71d877b557264a90a0.tar.gz tcl-90ca2f4448e5aba75ffe9b71d877b557264a90a0.tar.bz2 |
unbreak windows build (by previous commit)
-rw-r--r-- | win/tclWinSock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinSock.c b/win/tclWinSock.c index 8e0f7d0..ee6be96 100644 --- a/win/tclWinSock.c +++ b/win/tclWinSock.c @@ -2660,7 +2660,7 @@ SocketSetupProc( Tcl_Time blockTime = { 0, 0 }; ThreadSpecificData *tsdPtr = TCL_TSD_INIT(&dataKey); - if (!GET_BITS(flags, TCL_FILE_EVENTS)) { + if (!GOT_BITS(flags, TCL_FILE_EVENTS)) { return; } |