summaryrefslogtreecommitdiffstats
path: root/win/tclWinChan.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-11-19 20:34:46 (GMT)
committernijtmans <nijtmans>2010-11-19 20:34:46 (GMT)
commit0142fdb760e82fc6fb38add2a16f9b5c8f110664 (patch)
treeb3e54eb437f32b635f7ebeace3b119ae57563405 /win/tclWinChan.c
parentf467ab59161c0d4f3ff72bdcbc456d2a12af3878 (diff)
downloadtcl-0142fdb760e82fc6fb38add2a16f9b5c8f110664.zip
tcl-0142fdb760e82fc6fb38add2a16f9b5c8f110664.tar.gz
tcl-0142fdb760e82fc6fb38add2a16f9b5c8f110664.tar.bz2
fix gcc warnings: unused variable 'registration'
Diffstat (limited to 'win/tclWinChan.c')
-rw-r--r--win/tclWinChan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinChan.c b/win/tclWinChan.c
index a47202a..c0d3284 100644
--- a/win/tclWinChan.c
+++ b/win/tclWinChan.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: tclWinChan.c,v 1.49.4.3 2010/09/08 15:42:13 dgp Exp $
+ * RCS: @(#) $Id: tclWinChan.c,v 1.49.4.4 2010/11/19 20:34:47 nijtmans Exp $
*/
#include "tclWinInt.h"
@@ -1028,7 +1028,7 @@ Tcl_MakeFileChannel(
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];