From 6d655be5df5a559253a3769f294a6255535ad3fd Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 6 Sep 2006 19:02:46 +0000 Subject: removed a lot of trailing \n in bb_msg() calls. It is added automatically by function itself. --- editors/awk.c | 2 +- editors/sed.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'editors') diff --git a/editors/awk.c b/editors/awk.c index 049673df3..6e81aa8f4 100644 --- a/editors/awk.c +++ b/editors/awk.c @@ -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: diff --git a/editors/sed.c b/editors/sed.c index d5cf3f219..40eef80bc 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -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; } -- cgit v1.2.3