From 72460c098f31c87deefc7daf9eeea3a4ad8224ab Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 8 Sep 2015 17:04:13 -0400 Subject: Implement -delete. Related to #5. --- color.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'color.c') diff --git a/color.c b/color.c index d994d17..2928fe2 100644 --- a/color.c +++ b/color.c @@ -309,7 +309,7 @@ void pretty_print(const color_table *colors, const char *fpath, const struct BFT fputs("\n", stdout); } -void print_error(const color_table *colors, const char *fpath, const struct BFTW *ftwbuf) { +void print_error(const color_table *colors, const char *fpath, int error) { const char *color = NULL; if (colors) { color = colors->orphan; @@ -318,7 +318,7 @@ void print_error(const color_table *colors, const char *fpath, const struct BFTW if (color) { print_esc(color, stderr); } - fprintf(stderr, "Error at %s: %s\n", fpath, strerror(ftwbuf->error)); + fprintf(stderr, "Error at %s: %s\n", fpath, strerror(error)); if (color) { print_esc(colors->reset, stderr); } -- cgit v1.2.3