diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-02 10:06:22 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-02 10:06:22 +0000 |
commit | c0bb308389d448d7564ac6034edbbb117b4744fc (patch) | |
tree | 5f78f5e8ebd6e57e87d9f6a49133d24e366a6ac7 | |
parent | cfc5d860e6b0c6120deae965cf991c0810d915cc (diff) | |
download | busybox-w32-c0bb308389d448d7564ac6034edbbb117b4744fc.tar.gz busybox-w32-c0bb308389d448d7564ac6034edbbb117b4744fc.tar.bz2 busybox-w32-c0bb308389d448d7564ac6034edbbb117b4744fc.zip |
- silence warning about "'free_and_close_stuff' used but never defined"
-rw-r--r-- | editors/sed.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/sed.c b/editors/sed.c index 726ebbd0c..32116fd29 100644 --- a/editors/sed.c +++ b/editors/sed.c | |||
@@ -122,9 +122,9 @@ struct append_list { | |||
122 | }; | 122 | }; |
123 | static struct append_list *append_head=NULL, *append_tail=NULL; | 123 | static struct append_list *append_head=NULL, *append_tail=NULL; |
124 | 124 | ||
125 | static void free_and_close_stuff(void); | 125 | void sed_free_and_close_stuff(void); |
126 | #if ENABLE_FEATURE_CLEAN_UP | 126 | #if ENABLE_FEATURE_CLEAN_UP |
127 | static void free_and_close_stuff(void) | 127 | void sed_free_and_close_stuff(void) |
128 | { | 128 | { |
129 | sed_cmd_t *sed_cmd = sed_cmd_head.next; | 129 | sed_cmd_t *sed_cmd = sed_cmd_head.next; |
130 | 130 | ||
@@ -1113,7 +1113,7 @@ extern int sed_main(int argc, char **argv) | |||
1113 | int status = EXIT_SUCCESS, opt, getpat = 1; | 1113 | int status = EXIT_SUCCESS, opt, getpat = 1; |
1114 | 1114 | ||
1115 | /* destroy command strings on exit */ | 1115 | /* destroy command strings on exit */ |
1116 | if (ENABLE_FEATURE_CLEAN_UP && atexit(free_and_close_stuff) == -1) | 1116 | if (ENABLE_FEATURE_CLEAN_UP && atexit(sed_free_and_close_stuff) == -1) |
1117 | bb_perror_msg_and_die("atexit"); | 1117 | bb_perror_msg_and_die("atexit"); |
1118 | 1118 | ||
1119 | /* Lie to autoconf when it starts asking stupid questions. */ | 1119 | /* Lie to autoconf when it starts asking stupid questions. */ |