Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-04-03 19:46:14 +0400
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-04-03 19:46:14 +0400
commit101a470068a62a70489797a3fdfa5084af80106e (patch)
treec28409b129280e4572162b3459bacd88666b2433 /modutils/modprobe.c
parentebd13558289657b3ee81be555ab194413ad7e023 (diff)
- make append_option and multiconvert static.
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r--modutils/modprobe.c2
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 )
/*
* This function appends an option to a list
*/
-struct mod_opt_t *append_option( struct mod_opt_t *opt_list, char *opt )
+static struct mod_opt_t *append_option( struct mod_opt_t *opt_list, char *opt )
{
struct mod_opt_t *ol = opt_list;