summaryrefslogtreecommitdiffstats
path: root/lib/log.h
diff options
context:
space:
mode:
authorhasso <hasso>2004-10-05 21:01:23 +0000
committerhasso <hasso>2004-10-05 21:01:23 +0000
commitff2e9e3c3816b7b828bbb023639db52364d729ff (patch)
tree7c586b5a363b80f0ecb4ab63137f89747ea72dd5 /lib/log.h
parent19290b43288f6636b6eca07156a4069324962751 (diff)
downloadquagga-ff2e9e3c3816b7b828bbb023639db52364d729ff.tar.bz2
quagga-ff2e9e3c3816b7b828bbb023639db52364d729ff.tar.xz
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.h')
-rw-r--r--lib/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/log.h b/lib/log.h
index defe0641..e2eeb826 100644
--- a/lib/log.h
+++ b/lib/log.h
@@ -121,8 +121,8 @@ int zlog_rotate ();
/* For hackey massage lookup and check */
#define LOOKUP(x, y) mes_lookup(x, x ## _max, y)
-char *lookup (struct message *, int);
-char *mes_lookup (struct message *meslist, int max, int index);
+const char *lookup (struct message *, int);
+const char *mes_lookup (struct message *meslist, int max, int index);
extern const char *zlog_priority[];