summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-12-14 13:18:22 +0100
committerVolker Lendecke <vl@samba.org>2008-12-19 13:38:54 +0100
commit3c6d070595dee97151afa6eba6cef3ebe6ee3cfb (patch)
treefa3c6867fa4223fe20e79c98f141c4034f186abc /source3/lib
parent42e407b300a5c6d90eeccb13d443229e057e455b (diff)
downloadsamba-3c6d070595dee97151afa6eba6cef3ebe6ee3cfb.tar.gz
samba-3c6d070595dee97151afa6eba6cef3ebe6ee3cfb.tar.bz2
samba-3c6d070595dee97151afa6eba6cef3ebe6ee3cfb.zip
Move some bytes from data to text, make use of the ARRAY_SIZE macro
Probably pointless, but it doesn't add complexity and it is fun to see bss and data shrink :-)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/debug.c b/source3/lib/debug.c
index 193e9efc96..14aca3adad 100644
--- a/source3/lib/debug.c
+++ b/source3/lib/debug.c
@@ -832,7 +832,7 @@ void check_log_size( void )
/* map debug levels to syslog() priorities
* note that not all DEBUG(0, ...) calls are
* necessarily errors */
- static int priority_map[] = {
+ static const int priority_map[4] = {
LOG_ERR, /* 0 */
LOG_WARNING, /* 1 */
LOG_NOTICE, /* 2 */
@@ -842,7 +842,7 @@ void check_log_size( void )
char *msgbuf = NULL;
int ret;
- if( syslog_level >= ( sizeof(priority_map) / sizeof(priority_map[0]) ) || syslog_level < 0)
+ if( syslog_level >= ARRAY_SIZE(priority_map) || syslog_level < 0)
priority = LOG_DEBUG;
else
priority = priority_map[syslog_level];