aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os
diff options
context:
space:
mode:
authoroni-link <knil.ino@gmail.com>2016-06-11 17:56:39 +0200
committerJustin M. Keyes <justinkz@gmail.com>2016-06-11 11:56:39 -0400
commit290215364898fbd3a660be6c0642377c47398619 (patch)
treea03bf50cbdf1428d25acf21e787efdc905fb008b /src/nvim/os
parenta160590e40342f013b7da45d2ab0e1c6ed636d35 (diff)
downloadrneovim-290215364898fbd3a660be6c0642377c47398619.tar.gz
rneovim-290215364898fbd3a660be6c0642377c47398619.tar.bz2
rneovim-290215364898fbd3a660be6c0642377c47398619.zip
Remove some unnecessary function attributes (#4909)
This removes attribute FUNC_ATTR_NONNULL_ALL for functions without a pointer parameter.
Diffstat (limited to 'src/nvim/os')
-rw-r--r--src/nvim/os/fs.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c
index 143a7160b0..08122828bd 100644
--- a/src/nvim/os/fs.c
+++ b/src/nvim/os/fs.c
@@ -398,7 +398,6 @@ int os_setperm(const char_u *name, int perm)
/// @note If the `owner` or `group` is specified as `-1`, then that ID is not
/// changed.
int os_fchown(int file_descriptor, uv_uid_t owner, uv_gid_t group)
- FUNC_ATTR_NONNULL_ALL
{
uv_fs_t request;
int result = uv_fs_fchown(&fs_loop, &request, file_descriptor,