From 8a2ffb2b010e02dd8dcbb3182d5a6e27006f6e46 Mon Sep 17 00:00:00 2001 From: Hinidu Date: Mon, 7 Apr 2014 00:24:21 +0300 Subject: Use stdbool in os module --- src/os/shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os/shell.c') 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; } } -- cgit