Misspelled function Timer::usleep().

This commit is contained in:
Michael Müller
2022-07-07 09:53:27 +02:00
parent 6870b94b6e
commit 76eb44b2d3

View File

@@ -40,7 +40,7 @@ void EpochManager::enter_epoch_periodically()
// Wait some time until next epoch.
//std::this_thread::sleep_for(config::epoch_interval()); // NOLINT: sleep_for seems to crash clang-tidy
_timer.u_sleep(config::epoch_interval().count());
_timer.usleep(config::epoch_interval().count());
}
}