summaryrefslogtreecommitdiffstats
path: root/win/tclWinFCmd.c
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2012-04-23 12:30:28 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2012-04-23 12:30:28 (GMT)
commit6e14d4b037124606898f47db23fd11da4db0b27e (patch)
tree36a35c68a8d8f61e3b2e51e236b86513e4138025 /win/tclWinFCmd.c
parentf0d0884f48e41e0c38d424a48037709f7a4917e0 (diff)
downloadtcl-6e14d4b037124606898f47db23fd11da4db0b27e.zip
tcl-6e14d4b037124606898f47db23fd11da4db0b27e.tar.gz
tcl-6e14d4b037124606898f47db23fd11da4db0b27e.tar.bz2
make some more internal tables const
On cygwin, install dll's in /usr/bin, not in /usr/lib
Diffstat (limited to 'win/tclWinFCmd.c')
-rw-r--r--win/tclWinFCmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinFCmd.c b/win/tclWinFCmd.c
index 231e4b7..2aeed16 100644
--- a/win/tclWinFCmd.c
+++ b/win/tclWinFCmd.c
@@ -54,7 +54,7 @@ enum {
WIN_SYSTEM_ATTRIBUTE
};
-static int attributeArray[] = {FILE_ATTRIBUTE_ARCHIVE, FILE_ATTRIBUTE_HIDDEN,
+static const int attributeArray[] = {FILE_ATTRIBUTE_ARCHIVE, FILE_ATTRIBUTE_HIDDEN,
0, FILE_ATTRIBUTE_READONLY, 0, FILE_ATTRIBUTE_SYSTEM};