diff options
author | Tiago Cunha <tcunha@gmx.com> | 2011-01-03 23:32:04 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2011-01-03 23:32:04 +0000 |
commit | a24b67fc5a750c6ea67e41a3b323eea8fa02a29e (patch) | |
tree | 60b1c35099bd98efe960791620ba9c75571b9f7c /key-string.c | |
parent | 521247bedb4756f08ba9fdcf2c073dc318e3dcc6 (diff) | |
download | rtmux-a24b67fc5a750c6ea67e41a3b323eea8fa02a29e.tar.gz rtmux-a24b67fc5a750c6ea67e41a3b323eea8fa02a29e.tar.bz2 rtmux-a24b67fc5a750c6ea67e41a3b323eea8fa02a29e.zip |
Sync OpenBSD patchset 824:
Last few tables that should be const.
Diffstat (limited to 'key-string.c')
-rw-r--r-- | key-string.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/key-string.c b/key-string.c index 63ab4c98..e218e15c 100644 --- a/key-string.c +++ b/key-string.c @@ -1,4 +1,4 @@ -/* $Id: key-string.c,v 1.34 2010-06-05 20:29:11 micahcowan Exp $ */ +/* $Id: key-string.c,v 1.35 2011-01-03 23:32:04 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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[] = { |