summaryrefslogtreecommitdiffstats
path: root/win/tclWinReg.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-04-23 13:49:01 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-04-23 13:49:01 (GMT)
commit969aa6f406f76c17c67d0c0467d72374121ce6ef (patch)
tree4c44f674724aef22717e0efab79ff4896b96ac00 /win/tclWinReg.c
parent53f81bb59b8ba463738ba21ac9d9efdfb9e6e9ce (diff)
parent79d05673697da9aed5779d1613e072d02fe0b759 (diff)
downloadtcl-969aa6f406f76c17c67d0c0467d72374121ce6ef.zip
tcl-969aa6f406f76c17c67d0c0467d72374121ce6ef.tar.gz
tcl-969aa6f406f76c17c67d0c0467d72374121ce6ef.tar.bz2
make some more internal tables const
Diffstat (limited to 'win/tclWinReg.c')
-rw-r--r--win/tclWinReg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinReg.c b/win/tclWinReg.c
index 1390415..937089c 100644
--- a/win/tclWinReg.c
+++ b/win/tclWinReg.c
@@ -67,7 +67,7 @@ static const char *const rootKeyNames[] = {
"HKEY_PERFORMANCE_DATA", "HKEY_DYN_DATA", NULL
};
-static HKEY rootKeys[] = {
+static const HKEY rootKeys[] = {
HKEY_LOCAL_MACHINE, HKEY_USERS, HKEY_CLASSES_ROOT, HKEY_CURRENT_USER,
HKEY_CURRENT_CONFIG, HKEY_PERFORMANCE_DATA, HKEY_DYN_DATA
};