diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-19 01:27:20 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-19 01:27:20 +0000 |
commit | c7cc5a9432d2224d4e0fe3cf8ae72abb7ef25e2c (patch) | |
tree | 103a6d3e66fd142e0f2b8d57a8156b87a6f590c9 /libbb/parse_config.c | |
parent | 885b6f29ae2740399231427dc2c6efe47db9a80d (diff) | |
download | busybox-w32-c7cc5a9432d2224d4e0fe3cf8ae72abb7ef25e2c.tar.gz busybox-w32-c7cc5a9432d2224d4e0fe3cf8ae72abb7ef25e2c.tar.bz2 busybox-w32-c7cc5a9432d2224d4e0fe3cf8ae72abb7ef25e2c.zip |
mdev: Rob's #if forest removal
*: remove superfluous conts in "f(type *const param)"
Diffstat (limited to 'libbb/parse_config.c')
-rw-r--r-- | libbb/parse_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/parse_config.c b/libbb/parse_config.c index 74f0524e5..b6c720d3a 100644 --- a/libbb/parse_config.c +++ b/libbb/parse_config.c | |||
@@ -79,7 +79,7 @@ parser_t* FAST_FUNC config_open(const char *filename) | |||
79 | return config_open2(filename, fopen_or_warn_stdin); | 79 | return config_open2(filename, fopen_or_warn_stdin); |
80 | } | 80 | } |
81 | 81 | ||
82 | static void config_free_data(parser_t *const parser) | 82 | static void config_free_data(parser_t *parser) |
83 | { | 83 | { |
84 | free(parser->line); | 84 | free(parser->line); |
85 | parser->line = NULL; | 85 | parser->line = NULL; |