aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-12-10 02:52:19 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-12-10 02:52:19 +0000
commit2ea630f9a50b439181aedb0a5d837d319deed9f5 (patch)
tree45ca2d70e7a570de52267d55554875ef7003939b /editors
parent2f8f71b20dbce1328a5175bb75ae15564f7e9489 (diff)
downloadbusybox-2ea630f9a50b439181aedb0a5d837d319deed9f5.tar.gz
bb_makedev: fix for glibc 2.3.2
sed: fix C++ style declaration
Diffstat (limited to 'editors')
-rw-r--r--editors/sed.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/sed.c b/editors/sed.c
index 877d1c420..ac3d8d463 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -796,15 +796,15 @@ static void process_files(void)
char *pattern_space, *next_line;
int linenum = 0, prev_last_char = 0;
int last_char, next_last_char = 0;
+ sed_cmd_t *sed_cmd;
+ int substituted;
/* Prime the pump */
next_line = get_next_line(&next_last_char);
/* go through every line in each file */
again:
-
- sed_cmd_t *sed_cmd;
- int substituted = 0;
+ substituted = 0;
/* Advance to next line. Stop if out of lines. */
pattern_space = next_line;