diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2015-09-02 11:34:46 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2015-09-02 11:34:46 -0400 |
commit | 2199c8b55dcd34334ef71f12707e17704f1b3d10 (patch) | |
tree | da3c847cde3e4e0ab458539515a462b3ca020bad /bfs.c | |
parent | 75377a9db6f9c4e00b9d39828d955ec4443f2ce2 (diff) | |
download | bfs-2199c8b55dcd34334ef71f12707e17704f1b3d10.tar.xz |
Print the root file/directory too.
Diffstat (limited to 'bfs.c')
-rw-r--r-- | bfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |