diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-09-18 00:24:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-18 00:24:39 +0200 |
commit | 1f49268c46fcbe65f7e2e2cb620e6f51c059cf9e (patch) | |
tree | e7cea7cc17ce0e5004ef040f5d0ffa1384c06ea9 /src/nvim/fileio.c | |
parent | ede5695eb194e9b607421415525177888b447753 (diff) | |
download | rneovim-1f49268c46fcbe65f7e2e2cb620e6f51c059cf9e.tar.gz rneovim-1f49268c46fcbe65f7e2e2cb620e6f51c059cf9e.tar.bz2 rneovim-1f49268c46fcbe65f7e2e2cb620e6f51c059cf9e.zip |
refactor: convert TRUE/FALSE to true/false (#15660)
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r-- | src/nvim/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 870c6ca2b1..b7dbda3d99 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -5546,7 +5546,7 @@ char_u * file_pat_to_reg_pat(const char_u *pat, const char_u *pat_end, char *all char_u *reg_pat; const char_u *p; int nested = 0; - int add_dollar = TRUE; + bool add_dollar = true; if (allow_dirs != NULL) { *allow_dirs = FALSE; |