diff options
| author | das <das> | 2002-01-18 03:22:31 (GMT) |
|---|---|---|
| committer | das <das> | 2002-01-18 03:22:31 (GMT) |
| commit | e491d1da1cdc4cb31b8af55c54716750c32b66f3 (patch) | |
| tree | 1dc5faca8a9c13b94076efdffe995dc3ebfe4dca /mac/tclMacFile.c | |
| parent | 1f7ecc859087a11dbdba252b6e61143bc191c930 (diff) | |
| download | tcl-e491d1da1cdc4cb31b8af55c54716750c32b66f3.zip tcl-e491d1da1cdc4cb31b8af55c54716750c32b66f3.tar.gz tcl-e491d1da1cdc4cb31b8af55c54716750c32b66f3.tar.bz2 | |
* generic/tclThreadTest.c:
* mac/tclMacChan.c:
* mac/tclMacFCmd.c:
* mac/tclMacFile.c:
* mac/tclMacLoad.c:
* mac/tclMacResource.c: TIP 27 CONSTification broke the mac
build in a number of places.
Diffstat (limited to 'mac/tclMacFile.c')
| -rw-r--r-- | mac/tclMacFile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mac/tclMacFile.c b/mac/tclMacFile.c index 0084da5..d38d784 100644 --- a/mac/tclMacFile.c +++ b/mac/tclMacFile.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclMacFile.c,v 1.13 2001/11/23 01:27:32 das Exp $ + * RCS: @(#) $Id: tclMacFile.c,v 1.14 2002/01/18 03:22:52 das Exp $ */ /* @@ -39,7 +39,7 @@ FspLocationFromFsPath(pathPtr, specPtr) Tcl_Obj *pathPtr; FSSpec* specPtr; { - char *native = Tcl_FSGetNativePath(pathPtr); + CONST char *native = Tcl_FSGetNativePath(pathPtr); return FSpLocationFromPath(strlen(native), native, specPtr); } |
