diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2011-01-01 03:43:20 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2011-01-01 03:43:20 +0000 |
commit | f833b885a17463658d8d5e814a4b3e269c3678c9 (patch) | |
tree | 7b78b8dd1c7525d3572651e2f7620c1b9cc47311 /key-string.c | |
parent | 67ee86085cc8e13222a6d5b4cc67c5f0934f0b3b (diff) | |
download | rtmux-f833b885a17463658d8d5e814a4b3e269c3678c9.tar.gz rtmux-f833b885a17463658d8d5e814a4b3e269c3678c9.tar.bz2 rtmux-f833b885a17463658d8d5e814a4b3e269c3678c9.zip |
Last few tables that should be const.
Diffstat (limited to 'key-string.c')
-rw-r--r-- | key-string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/key-string.c b/key-string.c index 20240407..2d768aef 100644 --- a/key-string.c +++ b/key-string.c @@ -25,7 +25,7 @@ int key_string_search_table(const char *); int key_string_get_modifiers(const char **); -struct { +const struct { const char *string; int key; } key_string_table[] = { |