aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-07-30 08:59:38 +0000
committervapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-07-30 08:59:38 +0000
commita32ec713866d05ed3806a18618dd72c1e8f50f07 (patch)
treecb784561909d50046e31633cae8144397f06b279
parent64618f8a1a39c5c3fba55cbe197fd12ebde9837c (diff)
downloadbusybox-w32-a32ec713866d05ed3806a18618dd72c1e8f50f07.tar.gz
busybox-w32-a32ec713866d05ed3806a18618dd72c1e8f50f07.tar.bz2
busybox-w32-a32ec713866d05ed3806a18618dd72c1e8f50f07.zip
tell people to ignore the dups/e0 warnings
git-svn-id: svn://busybox.net/trunk/busybox@10980 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--coreutils/uniq.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/coreutils/uniq.c b/coreutils/uniq.c
index 6caab5dae..415f5db3b 100644
--- a/coreutils/uniq.c
+++ b/coreutils/uniq.c
@@ -38,6 +38,7 @@ int uniq_main(int argc, char **argv)
38 FILE *in, *out; 38 FILE *in, *out;
39 /* Note: Ignore the warning about dups and e0 being used 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#warning The dups and e0 warnings are OK, ignore them
41 unsigned long dups, skip_fields, skip_chars, i; 42 unsigned long dups, skip_fields, skip_chars, i;
42 const char *s0, *e0, *s1, *e1, *input_filename; 43 const char *s0, *e0, *s1, *e1, *input_filename;
43 int opt; 44 int opt;