From 3cb3c9f0de2e011cbd3c055a77a61e8a0a2a7aec Mon Sep 17 00:00:00 2001 From: cxl Date: Tue, 9 Jun 2020 13:30:39 +0000 Subject: [PATCH] .upptst git-svn-id: svn://ultimatepp.org/upp/trunk@14571 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- upptst/MemoryStatus/MemoryStatus.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/upptst/MemoryStatus/MemoryStatus.cpp b/upptst/MemoryStatus/MemoryStatus.cpp index a197ee82a..896cf6359 100644 --- a/upptst/MemoryStatus/MemoryStatus.cpp +++ b/upptst/MemoryStatus/MemoryStatus.cpp @@ -6,9 +6,9 @@ CONSOLE_APP_MAIN { StdLogSetup(LOG_COUT|LOG_FILE); - uint64 free, total; - GetSystemMemoryStatus(total, free); + uint64 total, available; + GetSystemMemoryStatus(total, available); LOG("Total memory: " << (total >> 20) << " MB"); - LOG("Free memory: " << (free >> 20) << " MB"); + LOG("Available memory: " << (available >> 20) << " MB"); }