diff options
| author | avanspector <avanspector@gmail.com> | 2024-02-26 06:18:33 +0100 |
|---|---|---|
| committer | avanspector <avanspector@gmail.com> | 2024-02-26 06:18:33 +0100 |
| commit | 1d79521e81aaef79a733759d3c5a18a717f8d174 (patch) | |
| tree | 7a66e1564da89fe44313f485b7f6b98116da9cb5 /core | |
| parent | 31d7ef5696416c9b43ca9c49dd10b0c90c6d61c1 (diff) | |
fix sys/haiku
Diffstat (limited to 'core')
| -rw-r--r-- | core/sys/haiku/os.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/sys/haiku/os.odin b/core/sys/haiku/os.odin index 03ea10b40..c269a7767 100644 --- a/core/sys/haiku/os.odin +++ b/core/sys/haiku/os.odin @@ -106,14 +106,14 @@ cpu_topology_node_info :: struct { level: u32, data: struct #raw_union { - root: struct { + _root: struct { platform: cpu_platform, }, - package: struct { + _package: struct { vendor: cpu_vendor, cache_line_size: u32 }, - core: struct { + _core: struct { model: u32, default_frequency: u64, }, |