summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-25 20:59:48 +0000
committerJim Meyering <jim@meyering.net>2005-03-25 20:59:48 +0000
commit622816d41a50c59640be9470a31b902b412e94be (patch)
tree413b17faeef63b5259e44cabbc585bb6e8d4c606 /src
parent3bf2d948e7e6db70652fbb059d3b136d1f737717 (diff)
downloadcoreutils-622816d41a50c59640be9470a31b902b412e94be.tar.xz
(main): Update use of DECIMAL_DIGIT_ACCUMULATE.
Diffstat (limited to 'src')
-rw-r--r--src/split.c2
-rw-r--r--src/uniq.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/split.c b/src/split.c
index 013a9f1ea..32f90a372 100644
--- a/src/split.c
+++ b/src/split.c
@@ -481,7 +481,7 @@ main (int argc, char **argv)
if (digits_optind != 0 && digits_optind != this_optind)
n_units = 0; /* More than one number given; ignore other. */
digits_optind = this_optind;
- if (DECIMAL_DIGIT_ACCUMULATE (n_units, c - '0', UINTMAX_MAX))
+ if (!DECIMAL_DIGIT_ACCUMULATE (n_units, c - '0', UINTMAX_MAX))
{
char buffer[INT_BUFSIZE_BOUND (uintmax_t)];
error (EXIT_FAILURE, 0,
diff --git a/src/uniq.c b/src/uniq.c
index c3421aa40..736c2813e 100644
--- a/src/uniq.c
+++ b/src/uniq.c
@@ -490,7 +490,7 @@ main (int argc, char **argv)
if (skip_field_option_type == SFO_NEW)
skip_fields = 0;
- if (DECIMAL_DIGIT_ACCUMULATE (skip_fields, optc - '0', SIZE_MAX))
+ if (!DECIMAL_DIGIT_ACCUMULATE (skip_fields, optc - '0', SIZE_MAX))
error (EXIT_FAILURE, 0, "%s",
_("invalid number of fields to skip"));
skip_field_option_type = SFO_OBSOLETE;