diff options
Diffstat (limited to 'src/uniq.c')
-rw-r--r-- | src/uniq.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/uniq.c b/src/uniq.c index 896ce938f..87a0c9301 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -24,6 +24,7 @@ #include "system.h" #include "argmatch.h" #include "linebuffer.h" +#include "die.h" #include "error.h" #include "fadvise.h" #include "hard-locale.h" @@ -249,7 +250,7 @@ size_opt (char const *opt, char const *msgid) break; default: - error (EXIT_FAILURE, 0, "%s: %s", opt, _(msgid)); + die (EXIT_FAILURE, 0, "%s: %s", opt, _(msgid)); } return MIN (size, SIZE_MAX); @@ -334,9 +335,9 @@ check_file (const char *infile, const char *outfile, char delimiter) struct linebuffer *thisline, *prevline; if (! (STREQ (infile, "-") || freopen (infile, "r", stdin))) - error (EXIT_FAILURE, errno, "%s", quotef (infile)); + die (EXIT_FAILURE, errno, "%s", quotef (infile)); if (! (STREQ (outfile, "-") || freopen (outfile, "w", stdout))) - error (EXIT_FAILURE, errno, "%s", quotef (outfile)); + die (EXIT_FAILURE, errno, "%s", quotef (outfile)); fadvise (stdin, FADVISE_SEQUENTIAL); @@ -433,7 +434,7 @@ check_file (const char *infile, const char *outfile, char delimiter) if (match_count == UINTMAX_MAX) { if (count_occurrences) - error (EXIT_FAILURE, 0, _("too many repeated lines")); + die (EXIT_FAILURE, 0, _("too many repeated lines")); match_count--; } @@ -469,7 +470,7 @@ check_file (const char *infile, const char *outfile, char delimiter) closefiles: if (ferror (stdin) || fclose (stdin) != 0) - error (EXIT_FAILURE, 0, _("error reading %s"), quoteaf (infile)); + die (EXIT_FAILURE, 0, _("error reading %s"), quoteaf (infile)); /* stdout is handled via the atexit-invoked close_stdout function. */ |