diff options
author | Jim Meyering <jim@meyering.net> | 2001-05-19 08:45:13 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-05-19 08:45:13 +0000 |
commit | 43624d4052251b74beb2f28376ec7a4fef283abd (patch) | |
tree | f7b2fdbe89386e91fcf40f489007c7721f729aee /src | |
parent | 43614bef5f248be9594bc8bfd2c8e785b6bd9bc3 (diff) | |
download | coreutils-43624d4052251b74beb2f28376ec7a4fef283abd.tar.xz |
(delimit_method_map): Remove trailing comma.
Diffstat (limited to 'src')
-rw-r--r-- | src/uniq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uniq.c b/src/uniq.c index abf87d5c1..51afd9617 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -96,7 +96,7 @@ static char const *const delimit_method_string[] = static enum delimit_method const delimit_method_map[] = { - delimit_none, delimit_all, delimit_minimum, + delimit_none, delimit_all, delimit_minimum }; /* Select whether/how to delimit groups of duplicate lines. */ |