svn commit: trunk/busybox: coreutils modutils

aldot at busybox.net aldot at busybox.net
Mon Apr 3 15:46:19 UTC 2006


Author: aldot
Date: 2006-04-03 08:46:14 -0700 (Mon, 03 Apr 2006)
New Revision: 14738

Log:
- make append_option and multiconvert static.


Modified:
   trunk/busybox/coreutils/printf.c
   trunk/busybox/modutils/modprobe.c


Changeset:
Modified: trunk/busybox/coreutils/printf.c
===================================================================
--- trunk/busybox/coreutils/printf.c	2006-04-03 12:29:12 UTC (rev 14737)
+++ trunk/busybox/coreutils/printf.c	2006-04-03 15:46:14 UTC (rev 14738)
@@ -54,7 +54,7 @@
 			int field_width, int precision, char *argument);
 
 typedef int (*converter)(char *arg, void *result);
-void multiconvert(char *arg, void *result, converter convert)
+static void multiconvert(char *arg, void *result, converter convert)
 {
 	char s[16];
 	if (*arg == '"' || *arg == '\'') {

Modified: trunk/busybox/modutils/modprobe.c
===================================================================
--- trunk/busybox/modutils/modprobe.c	2006-04-03 12:29:12 UTC (rev 14737)
+++ trunk/busybox/modutils/modprobe.c	2006-04-03 15:46:14 UTC (rev 14738)
@@ -133,7 +133,7 @@
 /*
  * 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;
 




More information about the busybox-cvs mailing list