diff options
| author | Pádraig Brady <P@draigBrady.com> | 2026-04-29 11:11:36 +0100 |
|---|---|---|
| committer | Pádraig Brady <P@draigBrady.com> | 2026-04-29 13:16:21 +0100 |
| commit | 00cd91288cce5e781dbc750e85ef00a74bc49def (patch) | |
| tree | f67e9d22668bc42fdbab0d0f09d32788dcc4e0a7 /src | |
| parent | dc723665b5edbb9ebe3d22dda76d0b77d3264c10 (diff) | |
| download | coreutils-00cd91288cce5e781dbc750e85ef00a74bc49def.tar.gz coreutils-00cd91288cce5e781dbc750e85ef00a74bc49def.zip | |
unexpand: consolidate error messages
* src/unexpand.c (main): Use the same error
as in parse_tab_stops().
Diffstat (limited to 'src')
| -rw-r--r-- | src/unexpand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unexpand.c b/src/unexpand.c index 4fbf9d3f8..3cbff1b12 100644 --- a/src/unexpand.c +++ b/src/unexpand.c @@ -319,7 +319,7 @@ main (int argc, char **argv) have_tabval = true; } if (!DECIMAL_DIGIT_ACCUMULATE (tabval, c - '0')) - error (EXIT_FAILURE, 0, _("tab stop value is too large")); + error (EXIT_FAILURE, 0, _("tab stop is too large")); break; } } |
