mirror of
https://github.com/neovim/neovim.git
synced 2025-10-15 22:36:09 +00:00
lua/shared: share trim() impl
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user