From 1543f696711b6f8714a146aeb8fcec5e4de18806 Mon Sep 17 00:00:00 2001 From: spiritlhl <103393591+spiritLHLS@users.noreply.github.com> Date: Tue, 7 May 2024 17:23:07 +0800 Subject: [PATCH] Update system.go --- system/system.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/system.go b/system/system.go index 161a52a..086dd3e 100644 --- a/system/system.go +++ b/system/system.go @@ -51,8 +51,8 @@ func CheckSystemInfo(language string) string { if runtime.GOOS != "windows" && runtime.GOOS != "macos" { res += " AES-NI : " + ret.CpuAesNi + "\n" } - res += " VM-x/AMD-V/Hyper-V : " + ret.CpuVAH + "\n" - res += " RAM : " + ret.MemoryUsage+" / "+ret.MemoryTotal + "\n" + res += " VM-x/AMD-V/Hyper-V : " + ret.CpuVAH + "\n" + res += " RAM : " + ret.MemoryUsage+" / "+ret.MemoryTotal + "\n" if ret.VirtioBalloon != "" { res += " Virtio Balloon : " + ret.VirtioBalloon + "\n" }