summaryrefslogtreecommitdiff
path: root/src/unexpand.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-07-05 06:32:54 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-07-05 06:32:54 +0000
commit3ca74b36f558ce3373234d951571b831595e60e7 (patch)
treea573d234f29e8fabfc558d87f394f896d2f828df /src/unexpand.c
parent413a45b973fd56f4e3a551bb6754199e18894d8d (diff)
downloadcoreutils-3ca74b36f558ce3373234d951571b831595e60e7.tar.xz
Adjust to the change to DECIMAL_DIGIT_ACCUMULATE: its last arg is now
a type, not a value.
Diffstat (limited to 'src/unexpand.c')
-rw-r--r--src/unexpand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unexpand.c b/src/unexpand.c
index 9f06588f2..e347d654c 100644
--- a/src/unexpand.c
+++ b/src/unexpand.c
@@ -192,7 +192,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_t))
{
size_t len = strspn (num_start, "0123456789");
char *bad_num = xstrndup (num_start, len);
@@ -512,7 +512,7 @@ main (int argc, char **argv)
tabval = 0;
have_tabval = true;
}
- if (!DECIMAL_DIGIT_ACCUMULATE (tabval, c - '0', UINTMAX_MAX))
+ if (!DECIMAL_DIGIT_ACCUMULATE (tabval, c - '0', uintmax_t))
error (EXIT_FAILURE, 0, _("tab stop value is too large"));
break;
}