Skip to content

Commit

Permalink
fix(src/vmm/vmx_root): correct Error typo in vmx supported check
Browse files Browse the repository at this point in the history
Signed-off-by: Sandro-Alessio Gierens <[email protected]>
  • Loading branch information
gierens committed Jan 12, 2025
1 parent b076549 commit 419b563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vmm/vmx_root.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ Lock Bit はシステムがリセットされるまでクリアされること
```ymir/vmx.zig
if (!arch.isVmxSupported()) {
log.err("Virtualization is not supported.", .{});
return Error.SystemNotSupported;
return .SystemNotSupported;
}
```

Expand Down

0 comments on commit 419b563

Please sign in to comment.