aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modutils/modprobe.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c
index 6a714da77..99650ff03 100644
--- a/modutils/modprobe.c
+++ b/modutils/modprobe.c
@@ -540,8 +540,10 @@ extern int modprobe_main(int argc, char** argv)
540 if (optind >= argc) 540 if (optind >= argc)
541 error_msg_and_die ( "No module or pattern provided\n" ); 541 error_msg_and_die ( "No module or pattern provided\n" );
542 542
543 return mod_insert ( xstrdup ( argv [optind] ), argc - optind - 1, argv + optind + 1 ) ? \ 543 if ( mod_insert ( xstrdup ( argv [optind] ), argc - optind - 1, argv + optind + 1 ))
544 EXIT_FAILURE : EXIT_SUCCESS; 544 error_msg_and_die ( "failed to load module %s", argv [optind] );
545
546 return EXIT_SUCCESS;
545} 547}
546 548
547 549