summaryrefslogtreecommitdiffstats
path: root/color.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2016-02-04 16:33:53 -0500
committerTavian Barnes <tavianator@tavianator.com>2016-02-04 16:33:53 -0500
commitd696346689e161ee8a5623182ed65ab119adb203 (patch)
tree3c55935d75f847a21c82c1ca7e400971f4f12fb2 /color.c
parent0a3754f8b66fc50dafeb61711679fc85c1e38038 (diff)
downloadbfs-d696346689e161ee8a5623182ed65ab119adb203.tar.xz
Implement -[ac]?newer.
Diffstat (limited to 'color.c')
-rw-r--r--color.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/color.c b/color.c
index 8e22340..d89be4f 100644
--- a/color.c
+++ b/color.c
@@ -318,7 +318,7 @@ void print_error(const struct color_table *colors, const char *path, int error)
if (color) {
print_esc(color, stderr);
}
- fprintf(stderr, "Error at %s: %s\n", path, strerror(error));
+ fprintf(stderr, "'%s': %s\n", path, strerror(error));
if (color) {
print_esc(colors->reset, stderr);
}