diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-27 09:02:31 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-27 09:02:31 +0000 |
commit | 8b039ac7df3ae06554165c79429b5d06240080c1 (patch) | |
tree | 139fa79a102d11dbab9828d2649c119245b196b1 /modutils | |
parent | 856b8fef84cd3f5787fdffd85dca2f922ce10732 (diff) | |
download | busybox-w32-8b039ac7df3ae06554165c79429b5d06240080c1.tar.gz busybox-w32-8b039ac7df3ae06554165c79429b5d06240080c1.tar.bz2 busybox-w32-8b039ac7df3ae06554165c79429b5d06240080c1.zip |
last nail into error_msg() (de)capitalization
git-svn-id: svn://busybox.net/trunk/busybox@16451 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/modprobe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index 5d62ae5df..08f383c82 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c | |||
@@ -725,7 +725,7 @@ static void check_dep ( char *mod, struct mod_list_t **head, struct mod_list_t * | |||
725 | } | 725 | } |
726 | 726 | ||
727 | if( !dt ) { | 727 | if( !dt ) { |
728 | bb_error_msg ("module %s not found.", mod); | 728 | bb_error_msg ("module %s not found", mod); |
729 | return; | 729 | return; |
730 | } | 730 | } |
731 | 731 | ||
@@ -749,7 +749,7 @@ static void check_dep ( char *mod, struct mod_list_t **head, struct mod_list_t * | |||
749 | dt = adt; | 749 | dt = adt; |
750 | } | 750 | } |
751 | else { | 751 | else { |
752 | bb_error_msg ("module %s not found.", mod); | 752 | bb_error_msg ("module %s not found", mod); |
753 | return; | 753 | return; |
754 | } | 754 | } |
755 | } | 755 | } |