Fix check_swap build error

This commit is contained in:
Michael Insel 2017-12-21 19:13:48 +01:00
parent bff6e39b7d
commit 3171b9548b
2 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ INT printOutput(printInfoStruct& printInfo)
return state;
}
INT check_swap(printInfoStruct& printInfo
INT check_swap(printInfoStruct& printInfo)
{
MEMORYSTATUSEX MemBuf;
MemBuf.dwLength = sizeof(MemBuf);

View File

@ -114,7 +114,7 @@ std::wstring threshold::pString(CONST DOUBLE max)
upperAbs = upper / 100.0 * max;
}
std::wstring s, lowerStr = removeZero(lowerAbs)
std::wstring s, lowerStr = removeZero(lowerAbs),
upperStr = removeZero(upperAbs);
if (lower != upper) {