summaryrefslogtreecommitdiffstats
path: root/win/tclWinChan.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-01-18 14:17:06 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-01-18 14:17:06 (GMT)
commitdb0a03daa7752bd0266d80a841014243c6a0169c (patch)
tree0cfd983cb1e3e7275d0a23704aba737b01cfb8c8 /win/tclWinChan.c
parent9844b5a37d9de3fc5bff2794df66411a2b76c6e3 (diff)
downloadtcl-db0a03daa7752bd0266d80a841014243c6a0169c.zip
tcl-db0a03daa7752bd0266d80a841014243c6a0169c.tar.gz
tcl-db0a03daa7752bd0266d80a841014243c6a0169c.tar.bz2
* Overlooked callers of Tcl_FSGetNativePath
Diffstat (limited to 'win/tclWinChan.c')
-rw-r--r--win/tclWinChan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinChan.c b/win/tclWinChan.c
index 08116ef..04830d9 100644
--- a/win/tclWinChan.c
+++ b/win/tclWinChan.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: tclWinChan.c,v 1.18 2002/01/15 21:19:07 dgp Exp $
+ * RCS: @(#) $Id: tclWinChan.c,v 1.19 2002/01/18 14:17:06 dgp Exp $
*/
#include "tclWinInt.h"
@@ -668,7 +668,7 @@ TclpOpenFileChannel(interp, pathPtr, modeString, permissions)
Tcl_Channel channel = 0;
int seekFlag, mode, channelPermissions;
DWORD accessMode, createMode, shareMode, flags, consoleParams, type;
- TCHAR *nativeName;
+ CONST TCHAR *nativeName;
DCB dcb;
HANDLE handle;
char channelName[16 + TCL_INTEGER_SPACE];