diff options
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) |