aboutsummaryrefslogtreecommitdiff
path: root/src/path.c
diff options
context:
space:
mode:
authorHinidu <hinidu@gmail.com>2014-04-07 00:24:21 +0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-07 12:15:28 -0300
commit8a2ffb2b010e02dd8dcbb3182d5a6e27006f6e46 (patch)
tree0f815b3f51dc2e383b6a2a5c8b9805885cae2ec2 /src/path.c
parentc3cea30cb7952c44c3452d9e7926fe50397d43ae (diff)
downloadrneovim-8a2ffb2b010e02dd8dcbb3182d5a6e27006f6e46.tar.gz
rneovim-8a2ffb2b010e02dd8dcbb3182d5a6e27006f6e46.tar.bz2
rneovim-8a2ffb2b010e02dd8dcbb3182d5a6e27006f6e46.zip
Use stdbool in os module
Diffstat (limited to 'src/path.c')
-rw-r--r--src/path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.c b/src/path.c
index 595499f709..ed6c280059 100644
--- a/src/path.c
+++ b/src/path.c
@@ -1208,7 +1208,7 @@ addfile (
)
{
char_u *p;
- int isdir;
+ bool isdir;
/* if the file/dir doesn't exist, may not add it */
if (!(flags & EW_NOTFOUND) && !os_file_exists(f))