fixed warnings

This commit is contained in:
2026-06-10 07:59:16 +02:00
parent e8b919f576
commit 57cbacda15
2 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ MIHP_HeapConfig MIHP_MakeDefaultConfigPreset()
MIHP_HeapConfig cfg = { 0 };
cfg.MinMemoryAreaSize = 4096 * 32;
cfg.MaxMemoryAreaSize = 4096 * 4096 * 128;
cfg.MaxMemoryAreaSize = 4096 * 4096 * 128ull;
cfg.MinTotalTraversalsBeforeHeapExpansion = 10'000;
cfg.MinHeapTraversalPercentToExpand = 80;