summaryrefslogtreecommitdiff
path: root/src/kernel/syscalls.h
diff options
context:
space:
mode:
authordzwdz2021-08-22 12:04:05 +0200
committerdzwdz2021-08-22 12:04:05 +0200
commit0128c5dc7ff2da36114b8f55187234d9b55db353 (patch)
treea504eb2a7c310bf54f6fc531e2b20a72142cc3bf /src/kernel/syscalls.h
parent175b575bbdca5d620c1ace1281568b2bb9c6b021 (diff)
fix typo in _syscall_await definition
Diffstat (limited to 'src/kernel/syscalls.h')
-rw-r--r--src/kernel/syscalls.h2
1 files changed, 1 insertions, 1 deletions
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.