summaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-07-03 08:46:05 +0000
committerJim Meyering <jim@meyering.net>2005-07-03 08:46:05 +0000
commit6dc3ffd8b6749957c862104b581231f73f9f057c (patch)
tree095e4315c3703ba31e7cf6a3d3f27bd717d0a861 /src/printf.c
parentde0cf8356f4a9195cb91a91f0c4b76dac0eebe46 (diff)
downloadcoreutils-6dc3ffd8b6749957c862104b581231f73f9f057c.tar.xz
(verify_numeric): Rename from verify.
Update caller.
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 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; \
} \