diff options
author | Hinidu <hinidu@gmail.com> | 2014-04-07 00:24:21 +0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-07 12:15:28 -0300 |
commit | 8a2ffb2b010e02dd8dcbb3182d5a6e27006f6e46 (patch) | |
tree | 0f815b3f51dc2e383b6a2a5c8b9805885cae2ec2 /src/os_unix.c | |
parent | c3cea30cb7952c44c3452d9e7926fe50397d43ae (diff) | |
download | rneovim-8a2ffb2b010e02dd8dcbb3182d5a6e27006f6e46.tar.gz rneovim-8a2ffb2b010e02dd8dcbb3182d5a6e27006f6e46.tar.bz2 rneovim-8a2ffb2b010e02dd8dcbb3182d5a6e27006f6e46.zip |
Use stdbool in os module
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 06b4e30ffd..c0fcc63fb0 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -1039,7 +1039,7 @@ int flags; /* EW_* flags */ int i; size_t len; char_u *p; - int dir; + bool dir; char_u *extra_shell_arg = NULL; ShellOpts shellopts = kShellOptExpand | kShellOptSilent; /* |