From 3c6d070595dee97151afa6eba6cef3ebe6ee3cfb Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 14 Dec 2008 13:18:22 +0100 Subject: [PATCH] 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 :-) --- source3/lib/debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/lib/debug.c b/source3/lib/debug.c index 193e9efc965..14aca3adad2 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]; -- 2.11.4.GIT