From 3bf2d948e7e6db70652fbb059d3b136d1f737717 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 25 Mar 2005 20:59:26 +0000 Subject: [PATCH] (parse_tab_stops, main): Update use of DECIMAL_DIGIT_ACCUMULATE. --- src/expand.c | 4 ++-- src/unexpand.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/expand.c b/src/expand.c index 4f57c6071f..4dcc985b01 100644 --- a/src/expand.c +++ b/src/expand.c @@ -172,7 +172,7 @@ parse_tab_stops (char const *stops) } { /* Detect overflow. */ - if (DECIMAL_DIGIT_ACCUMULATE (tabval, *stops - '0', UINTMAX_MAX)) + if (!DECIMAL_DIGIT_ACCUMULATE (tabval, *stops - '0', UINTMAX_MAX)) { size_t len = strspn (num_start, "0123456789"); char *bad_num = xstrndup (num_start, len); @@ -419,7 +419,7 @@ main (int argc, char **argv) have_tabval = true; } { - if (DECIMAL_DIGIT_ACCUMULATE (tabval, c - '0', UINTMAX_MAX)) + if (!DECIMAL_DIGIT_ACCUMULATE (tabval, c - '0', UINTMAX_MAX)) error (EXIT_FAILURE, 0, _("tab stop value is too large")); } obsolete_tablist = true; diff --git a/src/unexpand.c b/src/unexpand.c index 935f986002..5e8fe9c0d2 100644 --- a/src/unexpand.c +++ b/src/unexpand.c @@ -193,7 +193,7 @@ parse_tab_stops (char const *stops) } { /* Detect overflow. */ - if (DECIMAL_DIGIT_ACCUMULATE (tabval, *stops - '0', UINTMAX_MAX)) + if (!DECIMAL_DIGIT_ACCUMULATE (tabval, *stops - '0', UINTMAX_MAX)) { size_t len = strspn (num_start, "0123456789"); char *bad_num = xstrndup (num_start, len); @@ -517,7 +517,7 @@ main (int argc, char **argv) have_tabval = true; } { - if (DECIMAL_DIGIT_ACCUMULATE (tabval, c - '0', UINTMAX_MAX)) + if (!DECIMAL_DIGIT_ACCUMULATE (tabval, c - '0', UINTMAX_MAX)) error (EXIT_FAILURE, 0, _("tab stop value is too large")); } obsolete_tablist = true; -- 2.47.3