diff options
author | dgp <dgp@users.sourceforge.net> | 2002-01-18 14:17:06 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-01-18 14:17:06 (GMT) |
commit | db0a03daa7752bd0266d80a841014243c6a0169c (patch) | |
tree | 0cfd983cb1e3e7275d0a23704aba737b01cfb8c8 /win/tclWinFCmd.c | |
parent | 9844b5a37d9de3fc5bff2794df66411a2b76c6e3 (diff) | |
download | tcl-db0a03daa7752bd0266d80a841014243c6a0169c.zip tcl-db0a03daa7752bd0266d80a841014243c6a0169c.tar.gz tcl-db0a03daa7752bd0266d80a841014243c6a0169c.tar.bz2 |
* Overlooked callers of Tcl_FSGetNativePath
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 f4cd7ad..ee49af9 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.18 2002/01/17 04:37:33 dgp Exp $ + * RCS: @(#) $Id: tclWinFCmd.c,v 1.19 2002/01/18 14:17:06 dgp Exp $ */ #include "tclWinInt.h" @@ -1303,7 +1303,7 @@ GetWinFileAttributes( Tcl_Obj **attributePtrPtr) /* A pointer to return the object with. */ { DWORD result; - TCHAR *nativeName; + CONST TCHAR *nativeName; nativeName = Tcl_FSGetNativePath(fileName); result = (*tclWinProcs->getFileAttributesProc)(nativeName); @@ -1583,7 +1583,7 @@ SetWinFileAttributes( DWORD fileAttributes; int yesNo; int result; - TCHAR *nativeName; + CONST TCHAR *nativeName; nativeName = Tcl_FSGetNativePath(fileName); fileAttributes = (*tclWinProcs->getFileAttributesProc)(nativeName); |