From ef34a0ab132bca94bd16d8518c3333cf81cbf2c6 Mon Sep 17 00:00:00 2001 From: Klemen Košir Date: Wed, 30 Apr 2014 11:06:52 +0200 Subject: Replace int with bool in some files. #654 --- src/nvim/fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/fileio.c') diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 6f21679549..b87b606f98 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -4966,7 +4966,7 @@ buf_check_timestamp ( if (emsg_silent == 0) { out_flush(); /* give the user some time to think about it */ - ui_delay(1000L, TRUE); + ui_delay(1000L, true); /* don't redraw and erase the message */ redraw_cmdline = FALSE; -- cgit