diff options
author | Rob Landley <rob@landley.net> | 2015-09-11 16:35:14 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-09-11 16:35:14 -0500 |
commit | e5354ca12a232b3f97726214254a868771cb70d1 (patch) | |
tree | ba373c24ede64b8a18f11a02cf834ce99aa586bf /toys/pending/ipcrm.c | |
parent | d067571abb2b7934f3350c90ca891beb987c68fd (diff) | |
download | toybox-e5354ca12a232b3f97726214254a868771cb70d1.tar.gz |
Replace toys.exithelp with help_exit() in lib.
Diffstat (limited to 'toys/pending/ipcrm.c')
-rw-r--r-- | toys/pending/ipcrm.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/toys/pending/ipcrm.c b/toys/pending/ipcrm.c index 21f436d3..cec1b12f 100644 --- a/toys/pending/ipcrm.c +++ b/toys/pending/ipcrm.c @@ -83,9 +83,6 @@ void ipcrm_main(void) for (tmp = TT.qid; tmp; tmp = tmp->next) do_ipcrm(0, 2, tmp->arg); for (tmp = TT.skey; tmp; tmp = tmp->next) do_ipcrm(1, 3, tmp->arg); for (tmp = TT.sid; tmp; tmp = tmp->next) do_ipcrm(0, 3, tmp->arg); - if (toys.optc) { - toys.exithelp++; - error_exit("unknown argument: %s", *toys.optargs); - } + if (toys.optc) help_exit("unknown argument: %s", *toys.optargs); } } |