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/shell.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/shell.c')
-rw-r--r-- | src/os/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/shell.c b/src/os/shell.c index e00c9b8d07..bc562474df 100644 --- a/src/os/shell.c +++ b/src/os/shell.c @@ -222,7 +222,7 @@ int os_call_shell(char_u *cmd, ShellOpts opts, char_u *extra_shell_arg) // TODO for now this is only needed if the terminal is in raw mode, but // when the UI is externalized we'll also need it, so leave it here uv_process_kill(&proc, SIGINT); - got_int = FALSE; + got_int = false; } } |