aboutsummaryrefslogtreecommitdiffstats
path: root/src/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/printf.c b/src/printf.c
index bb5a7c723..0d5921e75 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -612,7 +612,7 @@ print_formatted (char const *format, int argc, char **argv)
have_field_width = true;
}
else
- while (ISDIGIT (*ac.f))
+ while (c_isdigit (*ac.f))
*pdirec++ = *ac.f++;
if (*ac.f == '.')
{
@@ -645,7 +645,7 @@ print_formatted (char const *format, int argc, char **argv)
have_precision = true;
}
else
- while (ISDIGIT (*ac.f))
+ while (c_isdigit (*ac.f))
*pdirec++ = *ac.f++;
}