From 2199c8b55dcd34334ef71f12707e17704f1b3d10 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 2 Sep 2015 11:34:46 -0400 Subject: Print the root file/directory too. --- bfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bfs.c') diff --git a/bfs.c b/bfs.c index 4e9671a..7090817 100644 --- a/bfs.c +++ b/bfs.c @@ -285,7 +285,7 @@ static bool eval_name(const expression *expr, eval_state *state) { * -print action. */ static bool eval_print(const expression *expr, eval_state *state) { - pretty_print(state->cl->colors, state->fpath, state->ftwbuf->statbuf); + pretty_print(state->cl->colors, state->fpath, state->ftwbuf); return true; } -- cgit v1.2.3