summaryrefslogtreecommitdiff
path: root/src/uniq.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/uniq.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/uniq.c')
-rw-r--r--src/uniq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uniq.c b/src/uniq.c
index 5f0ea74f9..057270145 100644
--- a/src/uniq.c
+++ b/src/uniq.c
@@ -471,7 +471,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_t))
error (EXIT_FAILURE, 0, "%s",
_("invalid number of fields to skip"));
skip_field_option_type = SFO_OBSOLETE;