[BusyBox-cvs] svn commit: trunk/busybox/coreutils

vapier at busybox.net vapier at busybox.net
Sat Jul 30 08:59:39 UTC 2005


Author: vapier
Date: 2005-07-30 02:59:38 -0600 (Sat, 30 Jul 2005)
New Revision: 10980

Log:
tell people to ignore the dups/e0 warnings

Modified:
   trunk/busybox/coreutils/uniq.c


Changeset:
Modified: trunk/busybox/coreutils/uniq.c
===================================================================
--- trunk/busybox/coreutils/uniq.c	2005-07-30 08:58:19 UTC (rev 10979)
+++ trunk/busybox/coreutils/uniq.c	2005-07-30 08:59:38 UTC (rev 10980)
@@ -38,6 +38,7 @@
 	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;




More information about the busybox-cvs mailing list