diff options
| author | gingerBill <bill@gingerbill.org> | 2024-08-04 10:51:08 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-08-04 10:51:08 +0100 |
| commit | e60951a902976acfef74b863463bb116858366c5 (patch) | |
| tree | 0bfb984d7a1f788223a230918cd3ab2017fd0752 /core/sys | |
| parent | 71932628cc3c1957a98e998740b059df9b7dd392 (diff) | |
Begin converting `os.Errno` to be a `nil`-able type as a transition period
Diffstat (limited to 'core/sys')
| -rw-r--r-- | core/sys/haiku/os.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/haiku/os.odin b/core/sys/haiku/os.odin index 1e00145eb..883072c2d 100644 --- a/core/sys/haiku/os.odin +++ b/core/sys/haiku/os.odin @@ -399,7 +399,7 @@ cpu_topology_node_info :: struct { }, _package: struct { vendor: cpu_vendor, - cache_line_size: u32 + cache_line_size: u32, }, _core: struct { model: u32, |