removed a lot of trailing \n in bb_msg() calls. It is added

automatically by function itself.
This commit is contained in:
Denis Vlasenko
2006-09-06 19:02:46 +00:00
parent 3538b9a882
commit 6d655be5df
14 changed files with 35 additions and 35 deletions

View File

@@ -2691,7 +2691,7 @@ keep_going:
free(s);
break;
case 'W':
bb_error_msg("Warning: unrecognized option '-W %s' ignored\n", optarg);
bb_error_msg("Warning: unrecognized option '-W %s' ignored", optarg);
break;
default:

View File

@@ -512,7 +512,7 @@ static void add_cmd(char *cmdstr)
cmdstr++;
idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
if (!idx) bb_error_msg_and_die("no address after comma\n");
if (!idx) bb_error_msg_and_die("no address after comma");
cmdstr += idx;
}