summaryrefslogtreecommitdiffstats
path: root/mac/tclMacLoad.c
diff options
context:
space:
mode:
authordas <das>2002-01-18 03:22:31 (GMT)
committerdas <das>2002-01-18 03:22:31 (GMT)
commitcd728b4198f9384debed58dc7650a4e46b657237 (patch)
tree1dc5faca8a9c13b94076efdffe995dc3ebfe4dca /mac/tclMacLoad.c
parent1979c67a816d1ee384f9c594443f80de15bb8f8f (diff)
downloadtcl-cd728b4198f9384debed58dc7650a4e46b657237.zip
tcl-cd728b4198f9384debed58dc7650a4e46b657237.tar.gz
tcl-cd728b4198f9384debed58dc7650a4e46b657237.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/tclMacLoad.c')
-rw-r--r--mac/tclMacLoad.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mac/tclMacLoad.c b/mac/tclMacLoad.c
index 9dd32be..1082a23 100644
--- a/mac/tclMacLoad.c
+++ b/mac/tclMacLoad.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: tclMacLoad.c,v 1.10 2002/01/17 03:03:12 dgp Exp $
+ * RCS: @(#) $Id: tclMacLoad.c,v 1.11 2002/01/18 03:22:58 das Exp $
*/
#include <CodeFragments.h>
@@ -130,7 +130,7 @@ TclpLoadFile(
Tcl_DString ds;
char *native;
- native = Tcl_FSGetNativePath(pathPtr);
+ native = (char *) Tcl_FSGetNativePath(pathPtr);
err = FSpLocationFromPath(strlen(native), native, &fileSpec);
if (err != noErr) {