aboutsummaryrefslogtreecommitdiff
path: root/coreutils/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/printf.c')
-rw-r--r--coreutils/printf.c2
1 files changed, 1 insertions, 1 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
56typedef int (*converter)(char *arg, void *result); 56typedef int (*converter)(char *arg, void *result);
57void multiconvert(char *arg, void *result, converter convert) 57static 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 == '\'') {