diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-11-01 16:58:35 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-11-01 16:58:35 (GMT) |
commit | 80c783d8a3c7e45827a3ea3160549a49bac5d6a0 (patch) | |
tree | c32e968629e313fea61361c2ff21f93d2d75b556 /win/tclWin32Dll.c | |
parent | 1d695e2434917aed6f4ce9ef0049330afddea307 (diff) | |
download | tcl-80c783d8a3c7e45827a3ea3160549a49bac5d6a0.zip tcl-80c783d8a3c7e45827a3ea3160549a49bac5d6a0.tar.gz tcl-80c783d8a3c7e45827a3ea3160549a49bac5d6a0.tar.bz2 |
Second part of fix for Bug 926106
Diffstat (limited to 'win/tclWin32Dll.c')
-rw-r--r-- | win/tclWin32Dll.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWin32Dll.c b/win/tclWin32Dll.c index c4f6e5d..59746d2 100644 --- a/win/tclWin32Dll.c +++ b/win/tclWin32Dll.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: tclWin32Dll.c,v 1.39 2004/09/01 17:41:03 hobbs Exp $ + * RCS: @(#) $Id: tclWin32Dll.c,v 1.40 2004/11/01 16:58:37 kennykb Exp $ */ #include "tclWinInt.h" @@ -136,7 +136,7 @@ static TclWinProcs asciiProcs = { */ NULL, NULL, - (int (__cdecl*)(CONST TCHAR *, struct _utimbuf *)) _utime, + /* deleted (int (__cdecl*)(CONST TCHAR *, struct _utimbuf *)) _utime, */ NULL, NULL, /* Security SDK - not available on 95,98,ME */ @@ -187,7 +187,7 @@ static TclWinProcs unicodeProcs = { */ NULL, NULL, - (int (__cdecl*)(CONST TCHAR *, struct _utimbuf *)) _wutime, + /* deleted (int (__cdecl*)(CONST TCHAR *, struct _utimbuf *)) _wutime, */ NULL, NULL, /* Security SDK - will be filled in on NT,XP,2000,2003 */ |