diff options
author | Rob Landley <rob@landley.net> | 2006-05-26 23:44:51 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-05-26 23:44:51 +0000 |
commit | 8bb50782a5f0dd955a6fe18d381eb9322d1447e7 (patch) | |
tree | b717c772c6fef53c34b723341a8c5b12ccb57902 /editors | |
parent | 5edc10275ec86f6ce6af97a8e2e5eeccb3a2e8cb (diff) |
Change llist_add_* to take the address of the list rather than returning the new
head, and change all the callers.
Diffstat (limited to 'editors')
-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) |