diff options
author | Himbeer <himbeer@disroot.org> | 2024-07-31 14:45:34 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2024-07-31 14:45:34 +0200 |
commit | 50a346960a5a4a64bb3ce20e12d46e08b8244784 (patch) | |
tree | ed524b8221717dc6e081113f2150abcf031242a8 /src | |
parent | 6c9cad1f566f6a8716fa94fb84668bf9d6c62a2a (diff) |
syscall: Fix processId signature comment return type
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/syscall.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/syscall.zig b/src/lib/syscall.zig index 43db5a5..ca8e2c8 100644 --- a/src/lib/syscall.zig +++ b/src/lib/syscall.zig @@ -138,7 +138,7 @@ fn terminate(proc: *const process.Info, trap_frame: *const TrapFrame) !void { } } -// processId() usize +// processId() u16 fn processId(proc: *const process.Info) usize { return proc.id; } |