diff options
Diffstat (limited to 'init/reboot.cpp')
-rw-r--r-- | init/reboot.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init/reboot.cpp b/init/reboot.cpp index d9acee57f3..2402cef510 100644 --- a/init/reboot.cpp +++ b/init/reboot.cpp @@ -533,8 +533,8 @@ static void StopServices(const std::set<std::string>& services, std::chrono::mil // Like StopServices, but also logs all the services that failed to stop after the provided timeout. // Returns number of violators. -static int StopServicesAndLogViolations(const std::set<std::string>& services, - std::chrono::milliseconds timeout, bool terminate) { +int StopServicesAndLogViolations(const std::set<std::string>& services, + std::chrono::milliseconds timeout, bool terminate) { StopServices(services, timeout, terminate); int still_running = 0; for (const auto& s : ServiceList::GetInstance()) { |