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

@ -287,7 +287,7 @@ read_line(void)
line_ptr = line_buffer;
if (!fgets(line_buffer, LINE_LENGTH, stdin)) {
/* error or eof */
bb_error_msg_and_die("\ngot EOF - exiting...");
bb_error_msg_and_die("\ngot EOF, exiting");
}
while (*line_ptr && !isgraph(*line_ptr))
line_ptr++;