summaryrefslogtreecommitdiffstats
path: root/win/tclWinFCmd.c
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2011-08-16 11:23:10 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2011-08-16 11:23:10 (GMT)
commita55a21d26f0214c0912bd8930ef7233731971ec3 (patch)
tree162be0d6576b34426a0e24068d5d3bfbff5ed2c7 /win/tclWinFCmd.c
parent5efd6dd2d1dd9fca4ded7e3a5298cce6fdeac87b (diff)
downloadtcl-a55a21d26f0214c0912bd8930ef7233731971ec3.zip
tcl-a55a21d26f0214c0912bd8930ef7233731971ec3.tar.gz
tcl-a55a21d26f0214c0912bd8930ef7233731971ec3.tar.bz2
[Bug 3388350] mingw64 compiler warnings
Diffstat (limited to 'win/tclWinFCmd.c')
-rw-r--r--win/tclWinFCmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinFCmd.c b/win/tclWinFCmd.c
index e0861f2..231e4b7 100644
--- a/win/tclWinFCmd.c
+++ b/win/tclWinFCmd.c
@@ -180,7 +180,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;
@@ -554,7 +554,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;