diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-18 18:22:03 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-18 18:22:03 (GMT) |
commit | 851c442b53473d494521a4633e8d764cb5d5e45a (patch) | |
tree | ceb431e7d0adf6d635f33303e9e505b2a28d4bf8 /generic/tkImgPhoto.c | |
parent | 8a1bd75ea0b55649f8dbabaa86aae60fc85b116b (diff) | |
parent | 95c5b39b2e335c0fc08a25281ad9097a29aee1ae (diff) | |
download | tk-851c442b53473d494521a4633e8d764cb5d5e45a.zip tk-851c442b53473d494521a4633e8d764cb5d5e45a.tar.gz tk-851c442b53473d494521a4633e8d764cb5d5e45a.tar.bz2 |
make some internal tables const
Diffstat (limited to 'generic/tkImgPhoto.c')
-rw-r--r-- | generic/tkImgPhoto.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tkImgPhoto.c b/generic/tkImgPhoto.c index ffff4fc..b30ca30 100644 --- a/generic/tkImgPhoto.c +++ b/generic/tkImgPhoto.c @@ -274,7 +274,7 @@ struct SubcommandOptions { * of the OPT_* constants above. */ -static char *optionNames[] = { +static const char *const optionNames[] = { "-background", "-compositingrule", "-format", @@ -1630,7 +1630,8 @@ ParseSubcommandOptions( { int index, c, bit, currentBit, length; int values[4], numValues, maxValues, argIndex; - char *option, **listPtr; + char *option; + const char *const *listPtr; for (index = *optIndexPtr; index < objc; *optIndexPtr = ++index) { /* |