1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:07:43 +00:00

Kernel: Use Userspace<T> for the chmod syscall

This commit is contained in:
Brian Gianforcaro 2020-08-09 15:09:10 -07:00 committed by Andreas Kling
parent 82bf6e8133
commit 2bac7190c8
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@
namespace Kernel {
int Process::sys$chmod(const char* user_path, size_t path_length, mode_t mode)
int Process::sys$chmod(Userspace<const char*> user_path, size_t path_length, mode_t mode)
{
REQUIRE_PROMISE(fattr);
auto path = get_syscall_path_argument(user_path, path_length);