diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-18 22:05:13 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-18 22:05:13 (GMT) |
commit | c6135146884f4b20a7dda117708475f8b999401a (patch) | |
tree | 814ee209e61f54111244c35e8c6d95ce48508163 /generic/tclConfig.c | |
parent | 421548b94bfbd446ade97d21beaf616879ca6a3f (diff) | |
parent | 7c0562b4a66a8c1d85f32b4ea92ef31ec8bbe2aa (diff) | |
download | tcl-c6135146884f4b20a7dda117708475f8b999401a.zip tcl-c6135146884f4b20a7dda117708475f8b999401a.tar.gz tcl-c6135146884f4b20a7dda117708475f8b999401a.tar.bz2 |
make some more internal tables const
a few CONST -> const changes
Diffstat (limited to 'generic/tclConfig.c')
-rw-r--r-- | generic/tclConfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclConfig.c b/generic/tclConfig.c index 251868e..28549ed 100644 --- a/generic/tclConfig.c +++ b/generic/tclConfig.c @@ -213,7 +213,7 @@ QueryConfigObjCmd( Tcl_Obj *pkgName = cdPtr->pkg; Tcl_Obj *pDB, *pkgDict, *val, *listPtr; int n, index; - static CONST char *subcmdStrings[] = { + static const char *subcmdStrings[] = { "get", "list", NULL }; enum subcmds { |