diff options
| author | nijtmans <nijtmans> | 2010-11-19 20:47:09 (GMT) |
|---|---|---|
| committer | nijtmans <nijtmans> | 2010-11-19 20:47:09 (GMT) |
| commit | 98094c8b21cc1ceb31dc402e08577c788b5cf4b3 (patch) | |
| tree | 738de98136f32d38d178924dafe0e707dec673bf /win/tclWinChan.c | |
| parent | b9c8a6f7c3127cf60bdb3363c7a6915963608438 (diff) | |
| download | tcl-98094c8b21cc1ceb31dc402e08577c788b5cf4b3.zip tcl-98094c8b21cc1ceb31dc402e08577c788b5cf4b3.tar.gz tcl-98094c8b21cc1ceb31dc402e08577c788b5cf4b3.tar.bz2 | |
fix gcc warnings: unused variable 'registration'
Diffstat (limited to 'win/tclWinChan.c')
| -rw-r--r-- | win/tclWinChan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinChan.c b/win/tclWinChan.c index 37e9011..0b030dd 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.59 2010/09/13 14:20:39 nijtmans Exp $ + * RCS: @(#) $Id: tclWinChan.c,v 1.60 2010/11/19 20:47:09 nijtmans Exp $ */ #include "tclWinInt.h" @@ -1027,7 +1027,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]; |
