aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ui.c
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2016-06-10 22:46:29 +0300
committerZyX <kp-pav@yandex.ru>2016-06-11 00:08:58 +0300
commitce234b0da56c2b3ff097d661a7ee1401b0fd0f0c (patch)
treeed28187f8633625af0b8a8aea7f56dc5f5296aba /src/nvim/ui.c
parent3676ad453028990ccc781fd076ece9a406423502 (diff)
downloadrneovim-ce234b0da56c2b3ff097d661a7ee1401b0fd0f0c.tar.gz
rneovim-ce234b0da56c2b3ff097d661a7ee1401b0fd0f0c.tar.bz2
rneovim-ce234b0da56c2b3ff097d661a7ee1401b0fd0f0c.zip
*: Fix new linter errors
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r--src/nvim/ui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c
index 96f4c30947..d968cbc390 100644
--- a/src/nvim/ui.c
+++ b/src/nvim/ui.c
@@ -60,7 +60,7 @@ static int height, width;
// See http://stackoverflow.com/a/11172679 for a better explanation of how it
// works.
#ifdef _MSC_VER
- #define UI_CALL(funname, ...) \
+# define UI_CALL(funname, ...) \
do { \
flush_cursor_update(); \
for (size_t i = 0; i < ui_count; i++) { \
@@ -69,7 +69,7 @@ static int height, width;
} \
} while (0)
#else
- #define UI_CALL(...) \
+# define UI_CALL(...) \
do { \
flush_cursor_update(); \
for (size_t i = 0; i < ui_count; i++) { \