clang-format
[collectd.git] / src / syslog.c
index e8c4be5..d3be5c9 100644 (file)
@@ -41,7 +41,8 @@ static int log_level = LOG_INFO;
 static int notif_severity;
 
 static const char *config_keys[] = {
-    "LogLevel", "NotifyLevel",
+    "LogLevel",
+    "NotifyLevel",
 };
 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
 
@@ -57,7 +58,7 @@ static int sl_config(const char *key, const char *value) {
     notif_severity = parse_notif_severity(value);
     if (notif_severity < 0)
       ERROR("syslog: invalid notification severity [%s]", value);
-      return 1;
+    return 1;
   }
 
   return 0;