diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-04-03 15:46:14 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-04-03 15:46:14 +0000 |
commit | 101a470068a62a70489797a3fdfa5084af80106e (patch) | |
tree | c28409b129280e4572162b3459bacd88666b2433 /modutils/modprobe.c | |
parent | ebd13558289657b3ee81be555ab194413ad7e023 (diff) | |
download | busybox-w32-101a470068a62a70489797a3fdfa5084af80106e.tar.gz busybox-w32-101a470068a62a70489797a3fdfa5084af80106e.tar.bz2 busybox-w32-101a470068a62a70489797a3fdfa5084af80106e.zip |
- make append_option and multiconvert static.
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 c16151537..8defd2854 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c | |||
@@ -133,7 +133,7 @@ static char *reads ( int fd, char *buffer, size_t len ) | |||
133 | /* | 133 | /* |
134 | * This function appends an option to a list | 134 | * This function appends an option to a list |
135 | */ | 135 | */ |
136 | struct mod_opt_t *append_option( struct mod_opt_t *opt_list, char *opt ) | 136 | static struct mod_opt_t *append_option( struct mod_opt_t *opt_list, char *opt ) |
137 | { | 137 | { |
138 | struct mod_opt_t *ol = opt_list; | 138 | struct mod_opt_t *ol = opt_list; |
139 | 139 | ||