1
0

fix: fix unvirt build issue

This commit is contained in:
2026-01-29 21:03:09 +08:00
parent 6f10f96f97
commit 333ff0ab17
5 changed files with 26 additions and 26 deletions

View File

@@ -8,7 +8,7 @@ namespace Unvirt::CmdHelper {
static std::optional<LoadStage> ParseLoadStage(const std::u8string_view &sv) {
if (sv == u8"shallow") return LoadStage::Shallow;
else if (sv == u8"deel") return LoadStage::Deep;
else if (sv == u8"deep") return LoadStage::Deep;
else return std::nullopt;
}