fix(build): Changes in inotify module

This commit is contained in:
patrick96 2022-05-04 11:09:55 +02:00
parent 7a1824a9b9
commit 46358792e0
No known key found for this signature in database
GPG Key ID: 521E5E03AEBCA1A7
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ namespace modules {
if (chrono::duration_cast<decltype(m_interval)>(now - m_lastpoll) > m_interval) {
m_lastpoll = now;
m_log.info("%s: Polling values (inotify fallback)", name());
on_event(nullptr);
on_event({});
}
}