]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(verify_numeric): Rename from verify.
authorJim Meyering <jim@meyering.net>
Sun, 3 Jul 2005 08:46:05 +0000 (08:46 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 3 Jul 2005 08:46:05 +0000 (08:46 +0000)
Update caller.

src/printf.c

index 746bcb268c1e5e24cc4a7938c98ca28908372b54..8707f3e4dd3f74c79cf385c3537bd879c460b63d 100644 (file)
@@ -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;                                                           \
 }                                                                       \