diff options
Diffstat (limited to 'toys/pending/modprobe.c')
-rw-r--r-- | toys/pending/modprobe.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/toys/pending/modprobe.c b/toys/pending/modprobe.c index 07c53fc2..6813dec3 100644 --- a/toys/pending/modprobe.c +++ b/toys/pending/modprobe.c @@ -495,8 +495,7 @@ void modprobe_main(void) if ((toys.optc < 1) && (((flags & FLAG_r) && (flags & FLAG_l)) ||(!((flags & FLAG_r)||(flags & FLAG_l))))) { - toys.exithelp++; - error_exit("bad syntax"); + help_exit("bad syntax"); } // Check for -r flag without arg if yes then do auto remove. if ((flags & FLAG_r) && !toys.optc) { |