diff options
author | Juan RP <xtraeme@gmail.com> | 2009-04-30 16:45:18 +0100 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2009-04-30 16:45:18 +0100 |
commit | a1e40e9beb621dbe342515ee0380c67837112a61 (patch) | |
tree | 2d1913479a42fad20c36cd270cac176a2539003f /src/rc/rc-update.c | |
parent | b70501ef452e896b1164290e3575ef7d89926f07 (diff) |
Fix parens
Diffstat (limited to 'src/rc/rc-update.c')
-rw-r--r-- | src/rc/rc-update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/rc-update.c b/src/rc/rc-update.c index 6b31ba10..7314f313 100644 --- a/src/rc/rc-update.c +++ b/src/rc/rc-update.c @@ -210,7 +210,7 @@ rc_update(int argc, char **argv) runlevels = rc_stringlist_new(); if (optind >= argc) { - if (! action & DOSHOW) + if (!(action & DOSHOW)) eerrorx("%s: no service specified", applet); } else { service = argv[optind]; |