diff options
author | Brian Gianforcaro <b.gianfo@gmail.com> | 2020-08-01 16:34:01 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-02 10:56:33 +0200 |
commit | ba4cf59d04a1079c86672452f6f870b7afa51913 (patch) | |
tree | 24a538c46257816edda444a088c352ba663dab75 /Kernel/Syscalls | |
parent | e67d0c9eef8d34714da3b0a2730ae31110e5181d (diff) | |
download | serenity-ba4cf59d04a1079c86672452f6f870b7afa51913.zip |
Kernel: Use Userspace<T> in setkeymap syscall
Diffstat (limited to 'Kernel/Syscalls')
-rw-r--r-- | Kernel/Syscalls/setkeymap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/setkeymap.cpp b/Kernel/Syscalls/setkeymap.cpp index 8c89a040ba..b8f34b6a10 100644 --- a/Kernel/Syscalls/setkeymap.cpp +++ b/Kernel/Syscalls/setkeymap.cpp @@ -29,7 +29,7 @@ namespace Kernel { -int Process::sys$setkeymap(const Syscall::SC_setkeymap_params* user_params) +int Process::sys$setkeymap(Userspace<const Syscall::SC_setkeymap_params*> user_params) { REQUIRE_PROMISE(setkeymap); |