diff options
Diffstat (limited to 'src/cut.c')
-rw-r--r-- | src/cut.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -34,6 +34,7 @@ #include "fadvise.h" #include "getndelim2.h" #include "hash.h" +#include "quote.h" #include "xstrndup.h" #include "set-fields.h" @@ -444,7 +445,7 @@ cut_file (char const *file) stream = fopen (file, "r"); if (stream == NULL) { - error (0, errno, "%s", file); + error (0, errno, "%s", quote (file)); return false; } } @@ -455,14 +456,14 @@ cut_file (char const *file) if (ferror (stream)) { - error (0, errno, "%s", file); + error (0, errno, "%s", quote (file)); return false; } if (STREQ (file, "-")) clearerr (stream); /* Also clear EOF. */ else if (fclose (stream) == EOF) { - error (0, errno, "%s", file); + error (0, errno, "%s", quote (file)); return false; } return true; |