diff options
Diffstat (limited to 'coreutils/uniq.c')
-rw-r--r-- | coreutils/uniq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/uniq.c b/coreutils/uniq.c index 90686c9af..6caab5dae 100644 --- a/coreutils/uniq.c +++ b/coreutils/uniq.c | |||
@@ -36,7 +36,7 @@ static const char uniq_opts[] = "f:s:cdu\0\7\3\5\1\2\4"; | |||
36 | int uniq_main(int argc, char **argv) | 36 | int uniq_main(int argc, char **argv) |
37 | { | 37 | { |
38 | FILE *in, *out; | 38 | FILE *in, *out; |
39 | /* Note: Ignore the warning about dups and e0 possibly being uninitialized. | 39 | /* Note: Ignore the warning about dups and e0 being used uninitialized. |
40 | * They will be initialized on the fist pass of the loop (since s0 is NULL). */ | 40 | * They will be initialized on the fist pass of the loop (since s0 is NULL). */ |
41 | unsigned long dups, skip_fields, skip_chars, i; | 41 | unsigned long dups, skip_fields, skip_chars, i; |
42 | const char *s0, *e0, *s1, *e1, *input_filename; | 42 | const char *s0, *e0, *s1, *e1, *input_filename; |