Update changelog, use std::exit instead of exit

This commit is contained in:
Lion Kortlepel
2021-09-10 13:43:50 +03:00
committed by Lion
parent 30624c77a2
commit a2f92b5791
2 changed files with 3 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ void Application::GracefullyShutdown() {
// hard shutdown at 2 additional tries
if (ShutdownAttempts == 2) {
info("hard shutdown forced by multiple shutdown requests");
exit(0);
std::exit(0);
}
info("already shutting down!");
return;