aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ui_bridge.c
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2016-06-10 22:35:18 +0300
committerZyX <kp-pav@yandex.ru>2016-06-11 00:08:58 +0300
commit739f066afee351ebb96a5f14a2721c9d78ab92c4 (patch)
tree5221d54354932400e94d4628183e1be8a3d37084 /src/nvim/ui_bridge.c
parentd359bb3f60cfb2eea7973081797841e69aeeb78c (diff)
downloadrneovim-739f066afee351ebb96a5f14a2721c9d78ab92c4.tar.gz
rneovim-739f066afee351ebb96a5f14a2721c9d78ab92c4.tar.bz2
rneovim-739f066afee351ebb96a5f14a2721c9d78ab92c4.zip
*: Also fix the adjacent errors
Diffstat (limited to 'src/nvim/ui_bridge.c')
-rw-r--r--src/nvim/ui_bridge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ui_bridge.c b/src/nvim/ui_bridge.c
index f73186e2ae..6290fb3d87 100644
--- a/src/nvim/ui_bridge.c
+++ b/src/nvim/ui_bridge.c
@@ -21,7 +21,7 @@
// Call a function in the UI thread
#define UI_CALL(ui, name, argc, ...) \
((UIBridgeData *)ui)->scheduler( \
- event_create(1, ui_bridge_##name##_event, argc, __VA_ARGS__), UI(ui))
+ event_create(1, ui_bridge_##name##_event, argc, __VA_ARGS__), UI(ui))
#define INT2PTR(i) ((void *)(uintptr_t)i)
#define PTR2INT(p) ((int)(uintptr_t)p)