diff options
| author | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-05 06:32:54 +0000 |
|---|---|---|
| committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-05 06:32:54 +0000 |
| commit | 3ca74b36f558ce3373234d951571b831595e60e7 (patch) | |
| tree | a573d234f29e8fabfc558d87f394f896d2f828df /src/cut.c | |
| parent | (VERIFY_W_TYPEOF): Remove; no longer needed. (diff) | |
| download | coreutils-3ca74b36f558ce3373234d951571b831595e60e7.tar.gz coreutils-3ca74b36f558ce3373234d951571b831595e60e7.zip | |
Adjust to the change to DECIMAL_DIGIT_ACCUMULATE: its last arg is now
a type, not a value.
Diffstat (limited to 'src/cut.c')
| -rw-r--r-- | src/cut.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -455,7 +455,7 @@ set_fields (const char *fieldstr) in_digits = true; /* Detect overflow. */ - if (!DECIMAL_DIGIT_ACCUMULATE (value, *fieldstr - '0', SIZE_MAX)) + if (!DECIMAL_DIGIT_ACCUMULATE (value, *fieldstr - '0', size_t)) { /* In case the user specified -c4294967296,22, complain only about the first number. */ |
