Merge pull request #2470 from parsebulb/fix-no-win32_app-compile

Fix compilation when WIN32_APP is not defined
This commit is contained in:
orignal
2026-08-11 10:16:15 -04:00
committed by GitHub
+4
View File
@@ -101,7 +101,11 @@ namespace util
int DaemonWin32::GetGracefulShutdownInterval () const
{
#ifdef WIN32_APP
return i2p::win32::GetGracefulShutdownRemainingTime ();
#else
return Daemon_Singleton::GetGracefulShutdownInterval ();
#endif
}
}
}