diff options
author | Robert Backhaus <robbak@robbak.com> | 2013-05-24 23:40:51 +1000 |
---|---|---|
committer | Robert Backhaus <robbak@robbak.com> | 2013-05-24 23:40:51 +1000 |
commit | 03f498080a813850e1a3addf2c555450aa5e65c1 (patch) | |
tree | ab608589cc86847b84eaaf5bc920b3c46450b695 /src/init.cpp | |
parent | 36dc41f4273c59e570978c603e48bbec43f3d0a1 (diff) |
Explictly cast calculation to int, to allow std::max to work.
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index ebd9dee7b2..3eb090ac0c 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -530,7 +530,7 @@ bool AppInit2(boost::thread_group& threadGroup) // Make sure enough file descriptors are available int nBind = std::max((int)mapArgs.count("-bind"), 1); nMaxConnections = GetArg("-maxconnections", 125); - nMaxConnections = std::max(std::min(nMaxConnections, FD_SETSIZE - nBind - MIN_CORE_FILEDESCRIPTORS), 0); + nMaxConnections = std::max(std::min(nMaxConnections, (int)(FD_SETSIZE - nBind - MIN_CORE_FILEDESCRIPTORS)), 0); int nFD = RaiseFileDescriptorLimit(nMaxConnections + MIN_CORE_FILEDESCRIPTORS); if (nFD < MIN_CORE_FILEDESCRIPTORS) return InitError(_("Not enough file descriptors available.")); |