diff options
Diffstat (limited to 'modutils/rmmod.c')
-rw-r--r-- | modutils/rmmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/rmmod.c b/modutils/rmmod.c index a3548879c..8d4639f50 100644 --- a/modutils/rmmod.c +++ b/modutils/rmmod.c @@ -52,7 +52,7 @@ int rmmod_main(int argc UNUSED_PARAM, char **argv) /* Unload _all_ unused modules via NULL delete_module() call */ err = bb_delete_module(NULL, flags); if (err && err != EFAULT) - bb_perror_msg_and_die("rmmod"); + bb_simple_perror_msg_and_die("rmmod"); return EXIT_SUCCESS; } |