diff options
-rw-r--r-- | coreutils/printf.c | 2 | ||||
-rw-r--r-- | modutils/modprobe.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/printf.c b/coreutils/printf.c index 706fd9c45..93b142765 100644 --- a/coreutils/printf.c +++ b/coreutils/printf.c | |||
@@ -54,7 +54,7 @@ static void print_direc (char *start, size_t length, | |||
54 | int field_width, int precision, char *argument); | 54 | int field_width, int precision, char *argument); |
55 | 55 | ||
56 | typedef int (*converter)(char *arg, void *result); | 56 | typedef int (*converter)(char *arg, void *result); |
57 | void multiconvert(char *arg, void *result, converter convert) | 57 | static void multiconvert(char *arg, void *result, converter convert) |
58 | { | 58 | { |
59 | char s[16]; | 59 | char s[16]; |
60 | if (*arg == '"' || *arg == '\'') { | 60 | if (*arg == '"' || *arg == '\'') { |
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 | ||