From: Jim Meyering Date: Sun, 3 Jul 2005 08:46:05 +0000 (+0000) Subject: (verify_numeric): Rename from verify. X-Git-Tag: CPPI-1_12~370 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6dc3ffd8b6749957c862104b581231f73f9f057c;p=thirdparty%2Fcoreutils.git (verify_numeric): Rename from verify. Update caller. --- diff --git a/src/printf.c b/src/printf.c index 746bcb268c..8707f3e4dd 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; \ } \