summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/expand.c4
-rw-r--r--src/unexpand.c4
2 files changed, 4 insertions, 4 deletions
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;
diff --git a/src/unexpand.c b/src/unexpand.c
index 935f98600..5e8fe9c0d 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;