diff options
Diffstat (limited to 'editors/sed.c')
-rw-r--r-- | editors/sed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/sed.c b/editors/sed.c index a17d1e551..6585a60bd 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -683,7 +683,7 @@ static sed_cmd_t *branch_to(const char *label) static void append(char *s) { - bbg.append_head = llist_add_to_end(bbg.append_head, bb_xstrdup(s)); + llist_add_to_end(&bbg.append_head, bb_xstrdup(s)); } static void flush_append(void) |