From 739f066afee351ebb96a5f14a2721c9d78ab92c4 Mon Sep 17 00:00:00 2001 From: ZyX Date: Fri, 10 Jun 2016 22:35:18 +0300 Subject: *: Also fix the adjacent errors --- src/nvim/ui_bridge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/ui_bridge.c') 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) -- cgit