aboutsummaryrefslogtreecommitdiff
path: root/modutils/modprobe.c
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-04-03 15:46:14 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-04-03 15:46:14 +0000
commit789c5ae4dfa476e433aab3877393a73bfdd31e64 (patch)
treec28409b129280e4572162b3459bacd88666b2433 /modutils/modprobe.c
parent68b36402b36b60eaddeb0ed8cceb41e0dadfd35e (diff)
downloadbusybox-w32-789c5ae4dfa476e433aab3877393a73bfdd31e64.tar.gz
busybox-w32-789c5ae4dfa476e433aab3877393a73bfdd31e64.tar.bz2
busybox-w32-789c5ae4dfa476e433aab3877393a73bfdd31e64.zip
- make append_option and multiconvert static.
git-svn-id: svn://busybox.net/trunk/busybox@14738 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 )
133/* 133/*
134 * This function appends an option to a list 134 * This function appends an option to a list
135 */ 135 */
136struct mod_opt_t *append_option( struct mod_opt_t *opt_list, char *opt ) 136static 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