diff options
Diffstat (limited to 'coreutils/uniq.c')
-rw-r--r-- | coreutils/uniq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/uniq.c b/coreutils/uniq.c index d0729607c..32327c6ce 100644 --- a/coreutils/uniq.c +++ b/coreutils/uniq.c @@ -71,7 +71,7 @@ int uniq_main(int argc ATTRIBUTE_UNUSED, char **argv) dups = 0; /* gnu uniq ignores newlines */ - while ((s1 = xmalloc_getline(in)) != NULL) { + while ((s1 = xmalloc_fgetline(in)) != NULL) { e1 = s1; for (i = skip_fields; i; i--) { e1 = skip_whitespace(e1); |