From 0128c5dc7ff2da36114b8f55187234d9b55db353 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Sun, 22 Aug 2021 12:04:05 +0200 Subject: fix typo in _syscall_await definition --- src/kernel/syscalls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/kernel/syscalls.h') diff --git a/src/kernel/syscalls.h b/src/kernel/syscalls.h index a986a33..83a68b2 100644 --- a/src/kernel/syscalls.h +++ b/src/kernel/syscalls.h @@ -19,7 +19,7 @@ _Noreturn void _syscall_exit(const char *msg, size_t len); /** Waits for a child to exit, putting its exit message into *buf. * @return the length of the message */ -int _syscall_await(char *buf, int *len); +int _syscall_await(char *buf, int len); /** Creates a copy of the current process, and executes it. * All user memory pages get copied too. -- cgit v1.2.3