aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimbeer <himbeer@disroot.org>2024-07-30 13:13:31 +0200
committerHimbeer <himbeer@disroot.org>2024-07-30 13:13:31 +0200
commit6247c2f436fd7735dde8261fe7c46b6f051bd2c5 (patch)
tree99a8e0c3977e080650915a58c4004376d9b5561e
parentf9ad9f3330d49a0349d3cba8917c4707a24770d0 (diff)
Fix link to errorName syscall in SRVRE kernel wiki error documentation
-rw-r--r--static/md/srvre/kernel/wiki/errors.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/md/srvre/kernel/wiki/errors.md b/static/md/srvre/kernel/wiki/errors.md
index 3ae2958..8cbf8d1 100644
--- a/static/md/srvre/kernel/wiki/errors.md
+++ b/static/md/srvre/kernel/wiki/errors.md
@@ -17,7 +17,7 @@ are not stable across source code changes due to the internal use of Zig's
`@intFromError` builtin function. The only way to receive meaningful
information about an error code is to pass it to the kernel.
Currently the only way to do this is the
-[errorName](/md/srvre/wiki/syscalls.md#errorname-100000) system call
+[errorName](/md/srvre/kernel/wiki/syscalls.md#errorname-100000) system call
which writes the textual representation of the error to a user-provided buffer
by using `@errorName`. This string can be matched against or printed to the
user.