mirror of https://github.com/Icinga/icinga2.git
Fix check_swap build error
This commit is contained in:
parent
bff6e39b7d
commit
3171b9548b
|
@ -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);
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue