diff options
author | nijtmans <nijtmans> | 2010-11-19 20:47:09 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-11-19 20:47:09 (GMT) |
commit | d86dbadf3d8cd8f55512e4a6132e57af844ea142 (patch) | |
tree | 738de98136f32d38d178924dafe0e707dec673bf /win/tclWinChan.c | |
parent | 6c6dc92ee5bcd102d4baf1a4fefcf27d18871b22 (diff) | |
download | tcl-d86dbadf3d8cd8f55512e4a6132e57af844ea142.zip tcl-d86dbadf3d8cd8f55512e4a6132e57af844ea142.tar.gz tcl-d86dbadf3d8cd8f55512e4a6132e57af844ea142.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]; |