diff options
Diffstat (limited to 'src/init')
-rw-r--r-- | src/init/syscalls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init/syscalls.c b/src/init/syscalls.c index 4bbd83a..1e11705 100644 --- a/src/init/syscalls.c +++ b/src/init/syscalls.c @@ -12,7 +12,7 @@ int _syscall_fork() { return _syscall(_SYSCALL_FORK, 0, 0, 0); } -int _syscall_await(char *buf, int *len) { +int _syscall_await(char *buf, int len) { return _syscall(_SYSCALL_AWAIT, (int)buf, (int)len, 0); } |