From ba6f9f60addb569aa223f6e245df78741eab5adf Mon Sep 17 00:00:00 2001 From: Utkarsh Maheshwari Date: Fri, 21 Sep 2018 18:14:32 +0530 Subject: multigrid: Fix lint errors --- src/nvim/api/ui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/api/ui.c') diff --git a/src/nvim/api/ui.c b/src/nvim/api/ui.c index 4f56371633..48a4708dbf 100644 --- a/src/nvim/api/ui.c +++ b/src/nvim/api/ui.c @@ -248,8 +248,8 @@ static void ui_set_option(UI *ui, bool init, String name, Object value, /// Sets the inner "width" and "height" of the window grid identified by /// "grid" handle. If the grid does not exist, set error. void nvim_ui_try_resize_grid(uint64_t channel_id, Integer grid, Integer width, - Integer height, Error *error) - FUNC_API_SINCE(4) FUNC_API_REMOTE_ONLY + Integer height, Error *error) + FUNC_API_SINCE(5) FUNC_API_REMOTE_ONLY { if (!pmap_has(uint64_t)(connected_uis, channel_id)) { api_set_error(error, kErrorTypeException, -- cgit