diff options
Diffstat (limited to 'src/rc/rc-status.c')
-rw-r--r-- | src/rc/rc-status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/rc-status.c b/src/rc/rc-status.c index 5f80f242..7eb152ec 100644 --- a/src/rc/rc-status.c +++ b/src/rc/rc-status.c @@ -412,7 +412,7 @@ int main(int argc, char **argv) state = rc_service_state(s->value); if ((rc_stringlist_find(sservices, s->value) || (state & ( RC_SERVICE_STOPPED | RC_SERVICE_HOTPLUGGED)))) { - if (! (state & RC_SERVICE_FAILED)) { + if (!(state & RC_SERVICE_FAILED)) { TAILQ_REMOVE(services, s, entries); free(s->value); free(s); |