diff options
author | Denis Vlasenko | 2007-04-16 22:32:04 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-04-16 22:32:04 +0000 |
commit | ac678ec2f127fc02a93fff2c164e0b13a94a6abf (patch) | |
tree | f1354d1d4e3ca29b1fd77698d45791e61fd7a8b1 /modutils | |
parent | 17e3c34aa7abe42aa604234235338e2b8087b8a0 (diff) | |
download | busybox-ac678ec2f127fc02a93fff2c164e0b13a94a6abf.zip busybox-ac678ec2f127fc02a93fff2c164e0b13a94a6abf.tar.gz |
style fixes, no code changes
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/modprobe.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index d6a9553..4c5e436 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c @@ -669,7 +669,8 @@ static int mod_process(const struct mod_list_t *list, int do_insert) * Check the matching between a pattern and a module name. * We need this as *_* is equivalent to *-*, even in pattern matching. */ -static int check_pattern(const char* pat_src, const char* mod_src) { +static int check_pattern(const char* pat_src, const char* mod_src) +{ int ret; if (ENABLE_FEATURE_MODPROBE_FANCY_ALIAS) { |