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/tclWinFCmd.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/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; |
