diff options
Diffstat (limited to 'src/cut.c')
| -rw-r--r-- | src/cut.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -441,7 +441,7 @@ cut_file (char const *file, void (*cut_stream) (FILE *)) { FILE *stream; - if (STREQ (file, "-")) + if (streq (file, "-")) { have_read_stdin = true; stream = stdin; @@ -464,7 +464,7 @@ cut_file (char const *file, void (*cut_stream) (FILE *)) int err = errno; if (!ferror (stream)) err = 0; - if (STREQ (file, "-")) + if (streq (file, "-")) clearerr (stream); /* Also clear EOF. */ else if (fclose (stream) == EOF) err = errno; |
