diff options
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 98584d1567..db49f6ba1c 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -1802,7 +1802,7 @@ void set_init_1(void) # endif int len; garray_T ga; - int mustfree; + bool mustfree; ga_init(&ga, 1, 100); for (size_t n = 0; n < ARRAY_SIZE(names); ++n) { @@ -1859,7 +1859,7 @@ void set_init_1(void) char_u *buf; int i; int j; - int mustfree = FALSE; + bool mustfree = false; /* Initialize the 'cdpath' option's default value. */ cdpath = vim_getenv((char_u *)"CDPATH", &mustfree); @@ -7426,7 +7426,7 @@ static void paste_option_changed(void) */ void vimrc_found(char_u *fname, char_u *envname) { - int dofree = FALSE; + bool dofree = false; char_u *p; if (fname != NULL) { |