diff options
author | Jim Meyering <jim@meyering.net> | 2001-03-03 18:40:44 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-03-03 18:40:44 +0000 |
commit | f10bbe70a9da74643c4168bab747b9d66a9f34ec (patch) | |
tree | f02e5d799528f739022e76c1f21e31a1fba2284e /src | |
parent | 3c1f85605908a2d036712ed9e19f4b65c115a3ab (diff) | |
download | coreutils-f10bbe70a9da74643c4168bab747b9d66a9f34ec.tar.xz |
(parse_field_count): Comment fix.
Diffstat (limited to 'src')
-rw-r--r-- | src/sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sort.c b/src/sort.c index 0b50c0395..952bfe8aa 100644 --- a/src/sort.c +++ b/src/sort.c @@ -1937,7 +1937,7 @@ badfieldspec (const char *s) static char const * parse_field_count (char const *string, size_t *val) { - /* '@' can't possibly be a valid suffix; return &bad_suffix so that + /* '@' can't possibly be a valid suffix; return &invalid_suffix so that the caller will eventually invoke badfieldspec. */ static char const invalid_suffix = '@'; char *suffix; |