aboutsummaryrefslogtreecommitdiff
path: root/rmmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'rmmod.c')
-rw-r--r--rmmod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rmmod.c b/rmmod.c
index 3a66af87a..7d4538e6e 100644
--- a/rmmod.c
+++ b/rmmod.c
@@ -39,7 +39,7 @@ extern int rmmod_main(int argc, char **argv)
{
int ret = EXIT_SUCCESS;
if (argc <= 1) {
- usage(rmmod_usage);
+ show_usage();
}
/* Parse any options */
@@ -52,7 +52,7 @@ extern int rmmod_main(int argc, char **argv)
perror_msg_and_die("rmmod");
return EXIT_SUCCESS;
default:
- usage(rmmod_usage);
+ show_usage();
}
}
}