diff options
author | Klemen Košir <klemen913@gmail.com> | 2014-04-30 11:06:52 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-07-08 17:25:48 +0000 |
commit | ef34a0ab132bca94bd16d8518c3333cf81cbf2c6 (patch) | |
tree | 9ae6122b7c3d941fdc237c51ef81f04e2bb737ac /src/nvim/if_cscope.c | |
parent | 3cf435af363dc3585568e1213152e31ed6b1fc08 (diff) | |
download | rneovim-ef34a0ab132bca94bd16d8518c3333cf81cbf2c6.tar.gz rneovim-ef34a0ab132bca94bd16d8518c3333cf81cbf2c6.tar.bz2 rneovim-ef34a0ab132bca94bd16d8518c3333cf81cbf2c6.zip |
Replace int with bool in some files. #654
Diffstat (limited to 'src/nvim/if_cscope.c')
-rw-r--r-- | src/nvim/if_cscope.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/if_cscope.c b/src/nvim/if_cscope.c index 73dac908e9..94fbc15ede 100644 --- a/src/nvim/if_cscope.c +++ b/src/nvim/if_cscope.c @@ -1886,7 +1886,7 @@ static void cs_release_csp(int i, int freefnpp) waitpid_errno = errno; if (pid != 0) break; /* break unless the process is still running */ - os_delay(50L, FALSE); /* sleep 50 ms */ + os_delay(50L, false); /* sleep 50 ms */ } # endif /* @@ -1917,7 +1917,7 @@ static void cs_release_csp(int i, int freefnpp) alive = FALSE; /* cscope process no longer exists */ break; } - os_delay(50L, FALSE); /* sleep 50ms */ + os_delay(50L, false); /* sleep 50ms */ } } if (alive) |