aboutsummaryrefslogtreecommitdiffstats
path: root/src/uniq.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/uniq.c')
-rw-r--r--src/uniq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uniq.c b/src/uniq.c
index 9aa780574..bce1949f3 100644
--- a/src/uniq.c
+++ b/src/uniq.c
@@ -322,9 +322,9 @@ check_file (char const *infile, char const *outfile, char delimiter)
struct linebuffer lb1, lb2;
struct linebuffer *thisline, *prevline;
- if (! (STREQ (infile, "-") || freopen (infile, "r", stdin)))
+ if (! (streq (infile, "-") || freopen (infile, "r", stdin)))
error (EXIT_FAILURE, errno, "%s", quotef (infile));
- if (! (STREQ (outfile, "-") || freopen (outfile, "w", stdout)))
+ if (! (streq (outfile, "-") || freopen (outfile, "w", stdout)))
error (EXIT_FAILURE, errno, "%s", quotef (outfile));
fadvise (stdin, FADVISE_SEQUENTIAL);