From 2c5859afecee81e345fc9526b1083bf79990ffb8 Mon Sep 17 00:00:00 2001 From: Daniel Mack Date: Fri, 7 Mar 2014 21:38:48 +0100 Subject: Make tables for DEFINE_STRING_TABLE_LOOKUP consistent Bring some arrays that are used for DEFINE_STRING_TABLE_LOOKUP() in the same order than the enums they reference. Also, pass the corresponding _MAX value to the array initalizer where appropriate. --- src/shared/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/shared/log.c') diff --git a/src/shared/log.c b/src/shared/log.c index 8d1067c63b..5ea1e3a0e8 100644 --- a/src/shared/log.c +++ b/src/shared/log.c @@ -967,7 +967,7 @@ bool log_on_console(void) { return syslog_fd < 0 && kmsg_fd < 0 && journal_fd < 0; } -static const char *const log_target_table[] = { +static const char *const log_target_table[_LOG_TARGET_MAX] = { [LOG_TARGET_CONSOLE] = "console", [LOG_TARGET_KMSG] = "kmsg", [LOG_TARGET_JOURNAL] = "journal", -- cgit v1.2.3-54-g00ecf