Fix build of mergee
All checks were successful
Tag and Release Lightless / tag-and-release (push) Successful in 2m10s

This commit is contained in:
cake
2026-01-22 02:46:05 +01:00
parent 571a9df483
commit 8b4274dffd

View File

@@ -50,7 +50,7 @@ namespace LightlessSync.Utils
{
if (addr == 0 || size == 0) return false;
if (VirtualQuery(addr, out var mbi, (nuint)Marshal.SizeOf<MEMORY_BASIC_INFORMATION>()) == 0)
if (VirtualQuery(addr, out var mbi, (nuint)Marshal.SizeOf<MemoryBasicInformation>()) == 0)
return false;
const uint Commit = 0x1000;