mirror of https://github.com/Icinga/icinga2.git
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)
|
||||
{
|
||||
while (!predicate)
|
||||
while (!predicate())
|
||||
Application::GetInstance()->ProcessEvents();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue