summaryrefslogtreecommitdiff
path: root/src/fmt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fmt.c')
-rw-r--r--src/fmt.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/fmt.c b/src/fmt.c
index f37f7cd88..46a8bce4b 100644
--- a/src/fmt.c
+++ b/src/fmt.c
@@ -29,7 +29,6 @@
#include "system.h"
#include "error.h"
#include "fadvise.h"
-#include "quote.h"
#include "xdectoint.h"
/* The official name of this program (e.g., no 'g' prefix). */
@@ -431,14 +430,14 @@ main (int argc, char **argv)
fmt (in_stream);
if (fclose (in_stream) == EOF)
{
- error (0, errno, "%s", quote (file));
+ error (0, errno, "%s", quotef (file));
ok = false;
}
}
else
{
error (0, errno, _("cannot open %s for reading"),
- quote (file));
+ quoteaf (file));
ok = false;
}
}