Use stdbool in os module

This commit is contained in:
Hinidu
2014-04-07 00:24:21 +03:00
committed by Thiago de Arruda
parent c3cea30cb7
commit 8a2ffb2b01
10 changed files with 76 additions and 88 deletions

View File

@@ -1174,7 +1174,7 @@ static char_u *qf_push_dir(char_u *dirbuf, struct dir_stack_T **stackptr)
vim_free((*stackptr)->dirname);
(*stackptr)->dirname = concat_fnames(ds_new->dirname, dirbuf,
TRUE);
if (os_isdir((*stackptr)->dirname) == TRUE)
if (os_isdir((*stackptr)->dirname))
break;
ds_new = ds_new->next;