From 3bf2d948e7e6db70652fbb059d3b136d1f737717 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 25 Mar 2005 20:59:26 +0000 Subject: (parse_tab_stops, main): Update use of DECIMAL_DIGIT_ACCUMULATE. --- src/expand.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/expand.c') diff --git a/src/expand.c b/src/expand.c index 4f57c6071..4dcc985b0 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; -- cgit v1.2.3-54-g00ecf