]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/log.c
*: style for EC replacements
[mirror_frr.git] / lib / log.c
index c45c26cb70aa0a59d6808a313b86b6b7d8aaa822..52ea8d9003259b55e0cb8bab469bd471cb9475c8 100644 (file)
--- a/lib/log.c
+++ b/lib/log.c
@@ -990,7 +990,7 @@ static const struct zebra_desc_table *zroute_lookup(unsigned int zroute)
 
        if (zroute >= array_size(route_types)) {
                flog_err(EC_LIB_DEVELOPMENT, "unknown zebra route type: %u",
-                         zroute);
+                        zroute);
                return &unknown;
        }
        if (zroute == route_types[zroute].type)
@@ -1005,8 +1005,7 @@ static const struct zebra_desc_table *zroute_lookup(unsigned int zroute)
                }
        }
        flog_err(EC_LIB_DEVELOPMENT,
-                 "internal error: cannot find route type %u in table!",
-                 zroute);
+                "internal error: cannot find route type %u in table!", zroute);
        return &unknown;
 }
 
@@ -1024,7 +1023,7 @@ const char *zserv_command_string(unsigned int command)
 {
        if (command >= array_size(command_types)) {
                flog_err(EC_LIB_DEVELOPMENT, "unknown zserv command type: %u",
-                         command);
+                        command);
                return unknown.string;
        }
        return command_types[command].string;