diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-29 10:16:05 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-29 10:16:05 +0000 |
commit | dadfb4975b23b284fa02d15a5cfd21593b2993fc (patch) | |
tree | 993a6e7a9efd1d2a06408d9cd069cb4eeb09e883 /modutils/modprobe.c | |
parent | e1ee48e0fdfe18aadb410b62f21516bf4b8ea581 (diff) | |
download | busybox-w32-dadfb4975b23b284fa02d15a5cfd21593b2993fc.tar.gz busybox-w32-dadfb4975b23b284fa02d15a5cfd21593b2993fc.tar.bz2 busybox-w32-dadfb4975b23b284fa02d15a5cfd21593b2993fc.zip |
hush: add #defines to switch off break/continue if loops are not supported
*: remove a few inline keywords
no code changes
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r-- | modutils/modprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index 0c59e8ab3..3a2d893ee 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c | |||
@@ -263,7 +263,7 @@ static int FAST_FUNC include_conf_dir_act(const char *filename UNUSED_PARAM, | |||
263 | return TRUE; | 263 | return TRUE; |
264 | } | 264 | } |
265 | 265 | ||
266 | static int inline include_conf_recursive(struct include_conf_t *conf, const char *filename) | 266 | static int include_conf_recursive(struct include_conf_t *conf, const char *filename) |
267 | { | 267 | { |
268 | return recursive_action(filename, ACTION_RECURSE, | 268 | return recursive_action(filename, ACTION_RECURSE, |
269 | include_conf_file_act, | 269 | include_conf_file_act, |