mirror of
https://github.com/neovim/neovim.git
synced 2025-09-14 23:38:17 +00:00
Replace int with bool in some files. #654
This commit is contained in:

committed by
Justin M. Keyes

parent
3cf435af36
commit
ef34a0ab13
@@ -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)
|
||||
|
Reference in New Issue
Block a user