aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/private/handle.h
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2016-06-10 22:23:56 +0300
committerZyX <kp-pav@yandex.ru>2016-06-11 00:08:57 +0300
commitd359bb3f60cfb2eea7973081797841e69aeeb78c (patch)
tree4a00c7338e919e8bfb737023035c5725dc0288be /src/nvim/api/private/handle.h
parent3d64bd2b3a87d22542cac03c1cc6a20a7ee13d1d (diff)
downloadrneovim-d359bb3f60cfb2eea7973081797841e69aeeb78c.tar.gz
rneovim-d359bb3f60cfb2eea7973081797841e69aeeb78c.tar.bz2
rneovim-d359bb3f60cfb2eea7973081797841e69aeeb78c.zip
*: Fix errors from new linter checks
Diffstat (limited to 'src/nvim/api/private/handle.h')
-rw-r--r--src/nvim/api/private/handle.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/api/private/handle.h b/src/nvim/api/private/handle.h
index 1a196f6797..804e266dc3 100644
--- a/src/nvim/api/private/handle.h
+++ b/src/nvim/api/private/handle.h
@@ -4,9 +4,9 @@
#include "nvim/vim.h"
#include "nvim/buffer_defs.h"
-#define HANDLE_DECLS(type, name) \
- type *handle_get_##name(uint64_t handle); \
- void handle_register_##name(type *name); \
+#define HANDLE_DECLS(type, name) \
+ type *handle_get_##name(uint64_t handle); \
+ void handle_register_##name(type *name); \
void handle_unregister_##name(type *name);
HANDLE_DECLS(buf_T, buffer)