summaryrefslogtreecommitdiffstats
path: root/win/tclWinChan.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2011-08-16 11:23:10 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2011-08-16 11:23:10 (GMT)
commit96af7fcd51a853aac2eb09b6de444a9789e04638 (patch)
tree162be0d6576b34426a0e24068d5d3bfbff5ed2c7 /win/tclWinChan.c
parent20f89a4c1b7b01af4df9e873f735ede8a70fd3a5 (diff)
downloadtcl-96af7fcd51a853aac2eb09b6de444a9789e04638.zip
tcl-96af7fcd51a853aac2eb09b6de444a9789e04638.tar.gz
tcl-96af7fcd51a853aac2eb09b6de444a9789e04638.tar.bz2
[Bug 3388350] mingw64 compiler warnings
Diffstat (limited to 'win/tclWinChan.c')
-rw-r--r--win/tclWinChan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinChan.c b/win/tclWinChan.c
index 67a12a0..d06ff50 100644
--- a/win/tclWinChan.c
+++ b/win/tclWinChan.c
@@ -962,7 +962,7 @@ Tcl_MakeFileChannel(rawHandle, mode)
int mode; /* ORed combination of TCL_READABLE and
* TCL_WRITABLE to indicate file mode. */
{
-#ifdef HAVE_NO_SEH
+#if defined(HAVE_NO_SEH) && !defined(_WIN64)
EXCEPTION_REGISTRATION registration;
#endif
char channelName[16 + TCL_INTEGER_SPACE];