summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/printf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/printf.c b/src/printf.c
index 746bcb268..8707f3e4d 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -148,7 +148,7 @@ ARGUMENTs converted to proper type first. Variable widths are handled.\n\
}
static void
-verify (const char *s, const char *end)
+verify_numeric (const char *s, const char *end)
{
if (errno)
{
@@ -187,7 +187,7 @@ FUNC_NAME (char const *s) \
{ \
errno = 0; \
val = (LIB_FUNC_EXPR); \
- verify (s, end); \
+ verify_numeric (s, end); \
} \
return val; \
} \