diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-05-15 09:47:34 -0700 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2009-06-18 20:18:29 +0100 |
commit | 8e4c09307d9eafbbbf7fbffb3d3483287cea169b (patch) | |
tree | c9b39213248d64fdaa28bc419e77ce1e3866a585 /lib/log.c | |
parent | fc52f95373b1dc0bec5f5a474bafa362b02a63ae (diff) |
[cleanup] Allow message tables to be constant
Avoid bugs, and improve cache locality by allowing message lists
to be read/only.
Diffstat (limited to 'lib/log.c')
-rw-r--r-- | lib/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -771,7 +771,7 @@ lookup (const struct message *mes, int key) * provided otherwise. */ const char * -mes_lookup (struct message *meslist, int max, int index, const char *none) +mes_lookup (const struct message *meslist, int max, int index, const char *none) { int pos = index - meslist[0].key; |