diff options
Diffstat (limited to 'coreutils/uniq.c')
-rw-r--r-- | coreutils/uniq.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/coreutils/uniq.c b/coreutils/uniq.c index e0133998a..ec7bde418 100644 --- a/coreutils/uniq.c +++ b/coreutils/uniq.c | |||
@@ -50,8 +50,7 @@ int uniq_main(int argc UNUSED_PARAM, char **argv) | |||
50 | skip_fields = skip_chars = 0; | 50 | skip_fields = skip_chars = 0; |
51 | max_chars = INT_MAX; | 51 | max_chars = INT_MAX; |
52 | 52 | ||
53 | opt_complementary = "f+:s+:w+"; | 53 | opt = getopt32(argv, "cduf:+s:+w:+", &skip_fields, &skip_chars, &max_chars); |
54 | opt = getopt32(argv, "cduf:s:w:", &skip_fields, &skip_chars, &max_chars); | ||
55 | argv += optind; | 54 | argv += optind; |
56 | 55 | ||
57 | input_filename = argv[0]; | 56 | input_filename = argv[0]; |