diff options
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 bd4ac32..b3104f1 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.25 2002/03/12 11:32:19 mdejong Exp $ + * RCS: @(#) $Id: tclWinFCmd.c,v 1.26 2002/03/14 20:51:44 mdejong Exp $ */ #include "tclWinInt.h" @@ -186,7 +186,7 @@ DoRenameFile( if ((*tclWinProcs->moveFileProc)(nativeSrc, nativeDst) != FALSE) { retval = TCL_OK; } - } __except (EXCEPTION_CONTINUE_EXECUTION) {} + } __except (EXCEPTION_EXECUTE_HANDLER) {} /* * Avoid using control flow statements in the SEH guarded block! @@ -472,7 +472,7 @@ DoCopyFile( if ((*tclWinProcs->copyFileProc)(nativeSrc, nativeDst, 0) != FALSE) { retval = TCL_OK; } - } __except (EXCEPTION_CONTINUE_EXECUTION) {} + } __except (EXCEPTION_EXECUTE_HANDLER) {} /* * Avoid using control flow statements in the SEH guarded block! |