aboutsummaryrefslogtreecommitdiff
path: root/editors/sed.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-06 19:02:46 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-06 19:02:46 +0000
commitcecd0d24015e677572d09fdd8f278beec46719ad (patch)
tree4342fd4f88b84459ef5c2c2c2c6fb86863a7112f /editors/sed.c
parent601d93b47b8ac41f1fd763db15f05b6419c0b398 (diff)
downloadbusybox-w32-cecd0d24015e677572d09fdd8f278beec46719ad.tar.gz
busybox-w32-cecd0d24015e677572d09fdd8f278beec46719ad.tar.bz2
busybox-w32-cecd0d24015e677572d09fdd8f278beec46719ad.zip
removed a lot of trailing \n in bb_msg() calls. It is added
automatically by function itself. git-svn-id: svn://busybox.net/trunk/busybox@16059 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'editors/sed.c')
-rw-r--r--editors/sed.c2
1 files changed, 1 insertions, 1 deletions
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)
512 512
513 cmdstr++; 513 cmdstr++;
514 idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match); 514 idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
515 if (!idx) bb_error_msg_and_die("no address after comma\n"); 515 if (!idx) bb_error_msg_and_die("no address after comma");
516 cmdstr += idx; 516 cmdstr += idx;
517 } 517 }
518 518