clang-format

This commit is contained in:
patrick96 2021-09-13 20:54:00 +02:00 committed by Patrick Ziegler
parent 21f6f7818a
commit c29e4837df
4 changed files with 13 additions and 12 deletions
src/components

View file

@ -253,9 +253,7 @@ void controller::read_events(bool confwatch) {
if (confwatch) {
eloop->fs_event_handle(
m_conf.filepath(), [this](const char* path, uv_fs_event events) { confwatch_handler(path, events); },
[this](int err) {
m_log.err("libuv error while watching config file for changes: %s", uv_strerror(err));
});
[this](int err) { m_log.err("libuv error while watching config file for changes: %s", uv_strerror(err)); });
}
if (m_ipc) {