summaryrefslogtreecommitdiff
path: root/Kernel/API
diff options
context:
space:
mode:
authorBrian Gianforcaro <b.gianfo@gmail.com>2020-08-04 22:29:28 -0700
committerAndreas Kling <kling@serenityos.org>2020-08-05 09:36:53 +0200
commit74d3b202f110c22f0b707cb8f2c36fca5ef4bc1d (patch)
treef34aeac5092e9d8db216d745af2cfe1d672930e1 /Kernel/API
parent84035e103503280cfed51d14b5bc29e9e46d7e3d (diff)
downloadserenity-74d3b202f110c22f0b707cb8f2c36fca5ef4bc1d.zip
Kernel: Use Userspace<T> for the waitid syscall
Diffstat (limited to 'Kernel/API')
-rw-r--r--Kernel/API/Syscall.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/API/Syscall.h b/Kernel/API/Syscall.h
index b332059686..ef8d5ced68 100644
--- a/Kernel/API/Syscall.h
+++ b/Kernel/API/Syscall.h
@@ -427,7 +427,7 @@ struct SC_unveil_params {
struct SC_waitid_params {
int idtype;
int id;
- struct siginfo* infop;
+ Userspace<struct siginfo*> infop;
int options;
};