diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-08-28 00:43:07 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-08-28 00:43:07 +0000 |
commit | b35759bc8c090a0a6c2f7006fdf4b77cdec9c3ae (patch) | |
tree | cb40909520a92fd5c133d831a4d34865a15ae6f0 /coreutils/uniq.c | |
parent | b1cb217b5d4903e8230d4e560850482872ea1e79 (diff) | |
download | busybox-w32-b35759bc8c090a0a6c2f7006fdf4b77cdec9c3ae.tar.gz busybox-w32-b35759bc8c090a0a6c2f7006fdf4b77cdec9c3ae.tar.bz2 busybox-w32-b35759bc8c090a0a6c2f7006fdf4b77cdec9c3ae.zip |
Fixup some warnings
git-svn-id: svn://busybox.net/trunk/busybox@9180 69ca8d6d-28ef-0310-b511-8ec308f3f277
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; |