mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-23 21:55:03 +02:00
Bugfix: Add missing parenthesis in function call.
This commit is contained in:
parent
580b5e358e
commit
eadb309dab
@ -507,7 +507,7 @@ bool Utility::Glob(const String& pathSpec, const function<void (const String&)>&
|
|||||||
*/
|
*/
|
||||||
void Utility::WaitUntil(const function<bool (void)>& predicate)
|
void Utility::WaitUntil(const function<bool (void)>& predicate)
|
||||||
{
|
{
|
||||||
while (!predicate)
|
while (!predicate())
|
||||||
Application::GetInstance()->ProcessEvents();
|
Application::GetInstance()->ProcessEvents();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user