From a32ec713866d05ed3806a18618dd72c1e8f50f07 Mon Sep 17 00:00:00 2001 From: vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> Date: Sat, 30 Jul 2005 08:59:38 +0000 Subject: tell people to ignore the dups/e0 warnings git-svn-id: svn://busybox.net/trunk/busybox@10980 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- coreutils/uniq.c | 1 + 1 file changed, 1 insertion(+) 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) FILE *in, *out; /* Note: Ignore the warning about dups and e0 being used uninitialized. * They will be initialized on the fist pass of the loop (since s0 is NULL). */ +#warning The dups and e0 warnings are OK, ignore them unsigned long dups, skip_fields, skip_chars, i; const char *s0, *e0, *s1, *e1, *input_filename; int opt; -- cgit v1.2.3-55-g6feb