summaryrefslogtreecommitdiff
path: root/src/shuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/shuf.c')
-rw-r--r--src/shuf.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/shuf.c b/src/shuf.c
index 040b00028..d7b5a3521 100644
--- a/src/shuf.c
+++ b/src/shuf.c
@@ -27,7 +27,6 @@
#include "getopt.h"
#include "linebuffer.h"
#include "quote.h"
-#include "quotearg.h"
#include "randint.h"
#include "randperm.h"
#include "read-file.h"
@@ -545,7 +544,7 @@ main (int argc, char **argv)
? SIZE_MAX
: randperm_bound (head_lines, n_lines)));
if (! randint_source)
- error (EXIT_FAILURE, errno, "%s", quotearg_colon (random_source));
+ error (EXIT_FAILURE, errno, "%s", quote (random_source));
if (use_reservoir_sampling)
{
@@ -567,7 +566,7 @@ main (int argc, char **argv)
permutation = randperm_new (randint_source, head_lines, n_lines);
if (outfile && ! freopen (outfile, "w", stdout))
- error (EXIT_FAILURE, errno, "%s", quotearg_colon (outfile));
+ error (EXIT_FAILURE, errno, "%s", quote (outfile));
/* Generate output according to requested method */
if (repeat)