diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/uniq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uniq.c b/src/uniq.c index 8dfb7ea97..7b77dd3b0 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -483,7 +483,7 @@ main (int argc, char **argv) int optc = 0; bool posixly_correct = (getenv ("POSIXLY_CORRECT") != NULL); enum Skip_field_option_type skip_field_option_type = SFO_NONE; - int nfiles = 0; + unsigned int nfiles = 0; char const *file[2]; char delimiter = '\n'; /* change with --zero-terminated, -z */ bool output_option_used = false; /* if true, one of -u/-d/-D/-c was used */ |