diff options
author | hasso <hasso> | 2004-10-05 23:01:23 +0200 |
---|---|---|
committer | hasso <hasso> | 2004-10-05 23:01:23 +0200 |
commit | 8c328f1106cf0498333c2d8a96940e7b4581e316 (patch) | |
tree | 9bf24cca6a68a9dd5d4dda586484e497d0c19ca6 /lib/log.c | |
parent | 2004-10-05 Paul Jakma <paul@dishone.st> (diff) | |
download | frr-8c328f1106cf0498333c2d8a96940e7b4581e316.tar.xz frr-8c328f1106cf0498333c2d8a96940e7b4581e316.zip |
Number of warnings is down to 3 again in lib directory. A lot of const's
added to strings and a lot of int -> unsigned int changes.
Diffstat (limited to 'lib/log.c')
-rw-r--r-- | lib/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -474,7 +474,7 @@ zlog_free_cwd () } /* Message lookup function. */ -char * +const char * lookup (struct message *mes, int key) { struct message *pnt; @@ -488,7 +488,7 @@ lookup (struct message *mes, int key) /* Very old hacky version of message lookup function. Still partly used in bgpd and ospfd. FIXME Seems that it's not used any more. */ -char * +const char * mes_lookup (struct message *meslist, int max, int index) { if (index < 0 || index >= max) |