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

Kernel: Use Userspace<T> for the realpath syscall

This commit is contained in:
Brian Gianforcaro 2020-08-07 02:37:39 -07:00 committed by Andreas Kling
parent 30b2c0dc85
commit 35c745ca54
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@
namespace Kernel {
int Process::sys$realpath(const Syscall::SC_realpath_params* user_params)
int Process::sys$realpath(Userspace<const Syscall::SC_realpath_params*> user_params)
{
REQUIRE_PROMISE(rpath);