last nail into error_msg() (de)capitalization

This commit is contained in:
Denis Vlasenko
2006-10-27 09:02:31 +00:00
parent 1340ca8c87
commit d3d004dd35
12 changed files with 88 additions and 88 deletions

View File

@ -725,7 +725,7 @@ static void check_dep ( char *mod, struct mod_list_t **head, struct mod_list_t *
}
if( !dt ) {
bb_error_msg ("module %s not found.", mod);
bb_error_msg ("module %s not found", mod);
return;
}
@ -749,7 +749,7 @@ static void check_dep ( char *mod, struct mod_list_t **head, struct mod_list_t *
dt = adt;
}
else {
bb_error_msg ("module %s not found.", mod);
bb_error_msg ("module %s not found", mod);
return;
}
}