summaryrefslogtreecommitdiff
path: root/src/tools/irm/irm_unbind_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/irm/irm_unbind_api.c')
-rw-r--r--src/tools/irm/irm_unbind_api.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/irm/irm_unbind_api.c b/src/tools/irm/irm_unbind_api.c
index d332f438..fdfc2374 100644
--- a/src/tools/irm/irm_unbind_api.c
+++ b/src/tools/irm/irm_unbind_api.c
@@ -33,7 +33,8 @@
static void usage(void)
{
printf("Usage: irm unbind api <pid>\n"
- " [name <name>, omit: remove all AP-I info]\n");
+ " [name <name> (default: remove all AP-I info)]"
+ "\n");
}
int do_unbind_api(int argc, char ** argv)
@@ -41,7 +42,7 @@ int do_unbind_api(int argc, char ** argv)
pid_t api = -1;
char * name = NULL;
- while (argc > 0) {
+ while (argc > 1) {
if (matches(*argv, "name") == 0) {
name = *(argv + 1);
++argv;