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/tclWinFCmd.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/tclWinFCmd.c')
-rw-r--r-- | win/tclWinFCmd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinFCmd.c b/win/tclWinFCmd.c index 8de5e9f..a32222c 100644 --- a/win/tclWinFCmd.c +++ b/win/tclWinFCmd.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: tclWinFCmd.c,v 1.70 2010/11/03 12:09:23 nijtmans Exp $ + * RCS: @(#) $Id: tclWinFCmd.c,v 1.71 2010/11/19 20:47:09 nijtmans Exp $ */ #include "tclWinInt.h" @@ -177,7 +177,7 @@ DoRenameFile( const TCHAR *nativeDst) /* New pathname for file or directory * (native). */ { -#ifdef HAVE_NO_SEH +#if defined(HAVE_NO_SEH) && !defined(_WIN64) EXCEPTION_REGISTRATION registration; #endif DWORD srcAttr, dstAttr; @@ -564,7 +564,7 @@ DoCopyFile( const TCHAR *nativeSrc, /* Pathname of file to be copied (native). */ const TCHAR *nativeDst) /* Pathname of file to copy to (native). */ { -#ifdef HAVE_NO_SEH +#if defined(HAVE_NO_SEH) && !defined(_WIN64) EXCEPTION_REGISTRATION registration; #endif int retval = -1; |