summaryrefslogtreecommitdiffstats
path: root/generic/tclFileName.c
diff options
context:
space:
mode:
authorjan.nijtmans <jan.nijtmans@noemail.net>2012-04-18 21:38:50 (GMT)
committerjan.nijtmans <jan.nijtmans@noemail.net>2012-04-18 21:38:50 (GMT)
commit253b9de823a1e1e774c35751fbb304733c55c1c8 (patch)
tree21613b0eb89c7761720b11b131e69e333052ed9b /generic/tclFileName.c
parentc2f6697401081223d101813d797f9682a3e1a8c7 (diff)
downloadtcl-253b9de823a1e1e774c35751fbb304733c55c1c8.zip
tcl-253b9de823a1e1e774c35751fbb304733c55c1c8.tar.gz
tcl-253b9de823a1e1e774c35751fbb304733c55c1c8.tar.bz2
make some more internal tables CONST
fix compilation with -DNO_CONST FossilOrigin-Name: 8e001f840260d0833abef7763606b84b0df941d6
Diffstat (limited to 'generic/tclFileName.c')
-rw-r--r--generic/tclFileName.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclFileName.c b/generic/tclFileName.c
index c70bed5..761c8be 100644
--- a/generic/tclFileName.c
+++ b/generic/tclFileName.c
@@ -2591,7 +2591,7 @@ TclDoGlob(interp, separators, headPtr, tail, types)
Tcl_ListObjLength(NULL, paths, &end);
while (repair < end) {
- const char *bytes;
+ CONST char *bytes;
int numBytes;
Tcl_Obj *fixme, *newObj;
Tcl_ListObjIndex(NULL, paths, repair, &fixme);