aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/message.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r--src/nvim/message.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c
index 1a42fba4a4..37a31ccf25 100644
--- a/src/nvim/message.c
+++ b/src/nvim/message.c
@@ -777,7 +777,7 @@ void wait_return(int redraw)
} else {
/* Make sure the hit-return prompt is on screen when 'guioptions' was
* just changed. */
- screenalloc(FALSE);
+ screenalloc(false);
State = HITRETURN;
setmouse();
@@ -2612,7 +2612,7 @@ int verbose_open(void)
* Give a warning message (for searching).
* Use 'w' highlighting and may repeat the message after redrawing
*/
-void give_warning(char_u *message, int hl)
+void give_warning(char_u *message, bool hl)
{
/* Don't do this for ":silent". */
if (msg_silent != 0)