aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uniq.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-30 08:59:38 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-30 08:59:38 +0000
commit0d3ca7289ef9d3ae2b3054407f212f8917c313a1 (patch)
treecb784561909d50046e31633cae8144397f06b279 /coreutils/uniq.c
parentcc428da83f3ae4d4c341c0ee0ed910f93dbf1cce (diff)
downloadbusybox-0d3ca7289ef9d3ae2b3054407f212f8917c313a1.tar.gz
tell people to ignore the dups/e0 warnings
Diffstat (limited to 'coreutils/uniq.c')
-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)
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;