Fixup some warnings

This commit is contained in:
Eric Andersen 2004-08-28 00:43:07 +00:00
parent 785001468d
commit b225e2a76b
6 changed files with 32 additions and 22 deletions

View file

@ -36,7 +36,7 @@ static const char uniq_opts[] = "f:s:cdu\0\7\3\5\1\2\4";
int uniq_main(int argc, char **argv)
{
FILE *in, *out;
/* Note: Ignore the warning about dups and e0 possibly being uninitialized.
/* 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). */
unsigned long dups, skip_fields, skip_chars, i;
const char *s0, *e0, *s1, *e1, *input_filename;