diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-05-20 23:06:14 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-05-20 23:46:56 +0200 |
commit | 5b04a4fa09e0ee09678aec23b1d0233e7c25e3e6 (patch) | |
tree | 04f75eccd24174f4723274a7505874d822363b9a /src/nvim/os/fs.c | |
parent | 646c3423dd580aebb677d9a3fe0ed26f74f97e31 (diff) | |
download | rneovim-5b04a4fa09e0ee09678aec23b1d0233e7c25e3e6.tar.gz rneovim-5b04a4fa09e0ee09678aec23b1d0233e7c25e3e6.tar.bz2 rneovim-5b04a4fa09e0ee09678aec23b1d0233e7c25e3e6.zip |
lua/shared: share trim() impl
Diffstat (limited to 'src/nvim/os/fs.c')
-rw-r--r-- | src/nvim/os/fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c index d1d088cf24..d5500b230c 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -717,7 +717,7 @@ int os_setperm(const char *const name, int perm) /// @return 0 on success, or libuv error code on failure. /// /// @note If `owner` or `group` is -1, then that ID is not changed. -int os_chown(const char* path, uv_uid_t owner, uv_gid_t group) +int os_chown(const char *path, uv_uid_t owner, uv_gid_t group) { int r; RUN_UV_FS_FUNC(r, uv_fs_chown, path, owner, group, NULL); |