aboutsummaryrefslogtreecommitdiff
path: root/modutils/rmmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'modutils/rmmod.c')
-rw-r--r--modutils/rmmod.c2
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)
52 /* Unload _all_ unused modules via NULL delete_module() call */ 52 /* Unload _all_ unused modules via NULL delete_module() call */
53 err = bb_delete_module(NULL, flags); 53 err = bb_delete_module(NULL, flags);
54 if (err && err != EFAULT) 54 if (err && err != EFAULT)
55 bb_perror_msg_and_die("rmmod"); 55 bb_simple_perror_msg_and_die("rmmod");
56 return EXIT_SUCCESS; 56 return EXIT_SUCCESS;
57 } 57 }
58 58