From 8bb50782a5f0dd955a6fe18d381eb9322d1447e7 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 26 May 2006 23:44:51 +0000 Subject: Change llist_add_* to take the address of the list rather than returning the new head, and change all the callers. --- findutils/grep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'findutils/grep.c') diff --git a/findutils/grep.c b/findutils/grep.c index e5b5e3242..fac296941 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -273,7 +273,7 @@ static void load_regexes_from_file(llist_t *fopt) free(cur); f = bb_xfopen(ffile, "r"); while ((line = bb_get_chomped_line_from_file(f)) != NULL) { - pattern_head = llist_add_to(pattern_head, + llist_add_to(&pattern_head, new_grep_list_data(line, PATTERN_MEM_A)); } } @@ -373,7 +373,7 @@ int grep_main(int argc, char **argv) else { char *pattern = new_grep_list_data(*argv++, 0); - pattern_head = llist_add_to(pattern_head, pattern); + llist_add_to(&pattern_head, pattern); argc--; } } -- cgit v1.2.3