diff options
| author | 2017-10-22 02:27:25 +0100 | |
|---|---|---|
| committer | 2017-10-22 19:44:45 +0100 | |
| commit | b1098712771ab823042fcf8614a706c76c2ff401 (patch) | |
| tree | 7feb35687035b5ac6e1dd4181501400c31a54efc /src/inspircd.cpp | |
| parent | Remove support for the Solaris IOCP socket engine. (diff) | |
Convert GetMaxFds() to size_t and deduplicate setting code.
Diffstat (limited to 'src/inspircd.cpp')
| -rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 397516939..80d1df75d 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -498,7 +498,7 @@ InspIRCd::InspIRCd(int argc, char** argv) : QueryPerformanceFrequency(&stats.QPFrequency); #endif - Logs->Log("STARTUP", LOG_DEFAULT, "Startup complete as '%s'[%s], %d max open sockets", Config->ServerName.c_str(),Config->GetSID().c_str(), SocketEngine::GetMaxFds()); + Logs->Log("STARTUP", LOG_DEFAULT, "Startup complete as '%s'[%s], %lu max open sockets", Config->ServerName.c_str(),Config->GetSID().c_str(), SocketEngine::GetMaxFds()); #ifndef _WIN32 ConfigTag* security = Config->ConfValue("security"); |
