aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-06-04 01:31:48 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-06-04 01:31:48 +0200
commitc46792492fa4a0b2631e9c711864f37a493aeef6 (patch)
tree3e554ad255b0dd0b287cbed3503aadda68951458
parentbf5f99ffb245e9039df62e5d3f77674fd7b3b2a7 (diff)
downloadbusybox-w32-c46792492fa4a0b2631e9c711864f37a493aeef6.tar.gz
busybox-w32-c46792492fa4a0b2631e9c711864f37a493aeef6.tar.bz2
busybox-w32-c46792492fa4a0b2631e9c711864f37a493aeef6.zip
typo fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--editors/sed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/sed.c b/editors/sed.c
index 7fe2809b3..a5ef400fc 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -917,7 +917,7 @@ static void process_files(void)
917 /* Or did we match the start of a numerical range? */ 917 /* Or did we match the start of a numerical range? */
918 || (sed_cmd->beg_line > 0 918 || (sed_cmd->beg_line > 0
919 && (sed_cmd->end_line || sed_cmd->end_match 919 && (sed_cmd->end_line || sed_cmd->end_match
920 /* note: even if end numeric and is < linenum too, 920 /* note: even if end is numeric and is < linenum too,
921 * GNU sed matches! We match too */ 921 * GNU sed matches! We match too */
922 ? (sed_cmd->beg_line <= linenum) /* N,end */ 922 ? (sed_cmd->beg_line <= linenum) /* N,end */
923 : (sed_cmd->beg_line == linenum) /* N */ 923 : (sed_cmd->beg_line == linenum) /* N */