diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-06-03 21:00:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-03 21:00:05 +0200 |
commit | 1b2acb8d958c1c8e2f382c2de9c98586801fd9fe (patch) | |
tree | 32cfd15ba90209b6ef34ef2f2d3630a9400105c8 /src/nvim/os_unix.c | |
parent | fd07250e6ca10929d5523db811b2c3a83c61a012 (diff) | |
parent | 3f553ac0b9b3866f1254e669eb0c1c019c789a60 (diff) | |
download | rneovim-1b2acb8d958c1c8e2f382c2de9c98586801fd9fe.tar.gz rneovim-1b2acb8d958c1c8e2f382c2de9c98586801fd9fe.tar.bz2 rneovim-1b2acb8d958c1c8e2f382c2de9c98586801fd9fe.zip |
Merge pull request #6807 from bfredl/attrindent
[RFC] lint: check indentation of FUNC_ATTR lines
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 7cf0d7817c..fb648fbcf8 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -173,7 +173,7 @@ void mch_exit(int r) FUNC_ATTR_NORETURN /// @returns OK for success or FAIL for error. int mch_expand_wildcards(int num_pat, char_u **pat, int *num_file, char_u ***file, int flags) FUNC_ATTR_NONNULL_ARG(3) - FUNC_ATTR_NONNULL_ARG(4) + FUNC_ATTR_NONNULL_ARG(4) { int i; size_t len; |