diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-05-05 15:46:55 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-05-05 22:56:27 -0400 |
commit | df7d960b0d7e1f9bd8aa58654760e41b6282f78a (patch) | |
tree | 9fc241b2fd0924cacc61c91eed8cb69b6874d764 /color.h | |
parent | 690d0467d1cb98247b72ee570dc49b225d63a5ec (diff) | |
download | bfs-df7d960b0d7e1f9bd8aa58654760e41b6282f78a.tar.xz |
bftw: Pass a const struct BFTW * to the callback
Diffstat (limited to 'color.h')
-rw-r--r-- | color.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -106,8 +106,8 @@ int cfclose(CFILE *cfile); * %s: A string * %zu: A size_t * %m: strerror(errno) - * %pP: A colored file path, from a struct BFTW * argument - * %pL: A colored link target, from a struct BFTW * argument + * %pP: A colored file path, from a const struct BFTW * argument + * %pL: A colored link target, from a const struct BFTW * argument * %%: A literal '%' * ${cc}: Change the color to 'cc' * $$: A literal '$' |