diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-05-06 16:58:01 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-05-06 16:58:01 +0200 |
commit | baa9ecc1ee63bd5d31adc74f0021d27a65ff3e77 (patch) | |
tree | 71a8cae4763ef65ee7dc1063412532f2ccbc382b /src | |
parent | e40a326cef05b25a80e00c8924d0d3bc8935930d (diff) |
systemctl: indentation fix
Diffstat (limited to 'src')
-rw-r--r-- | src/systemctl/systemctl.c | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index bec4f31b39..7d0d4966d5 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -1711,21 +1711,22 @@ static int list_dependencies_one( const char *on; (void) get_state_one_unit(bus, *c, &active_state); + switch (active_state) { - case UNIT_ACTIVE: - case UNIT_RELOADING: - case UNIT_ACTIVATING: - on = ansi_highlight_green(); - break; - - case UNIT_INACTIVE: - case UNIT_DEACTIVATING: - on = ansi_normal(); - break; - - default: - on = ansi_highlight_red(); - break; + case UNIT_ACTIVE: + case UNIT_RELOADING: + case UNIT_ACTIVATING: + on = ansi_highlight_green(); + break; + + case UNIT_INACTIVE: + case UNIT_DEACTIVATING: + on = ansi_normal(); + break; + + default: + on = ansi_highlight_red(); + break; } printf("%s%s%s ", on, draw_special_char(DRAW_BLACK_CIRCLE), ansi_normal()); |