diff options
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 98521fe682..5da3c6fb3f 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -85,7 +85,7 @@ void mch_write(char_u *s, int len) { ignored = (int)write(1, (char *)s, len); if (p_wd) /* Unix is too fast, slow down a bit more */ - os_microdelay(p_wd, 0); + os_microdelay(p_wd, false); } /* |