diff options
| author | Pieter Wuille <[email protected]> | 2013-05-29 19:41:51 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2013-05-29 19:41:51 -0700 |
| commit | d315eb0a76bcb656d5791df7b9b84443fd60b7c5 (patch) | |
| tree | 8c0d713a63b4df0cbda2d07255cbe2f7cad84a06 /src/init.cpp | |
| parent | Merge pull request #2696 from robbak/util_h-Add_stdarg_include (diff) | |
| parent | Explictly cast calculation to int, to allow std::max to work. (diff) | |
| download | discoin-d315eb0a76bcb656d5791df7b9b84443fd60b7c5.tar.xz discoin-d315eb0a76bcb656d5791df7b9b84443fd60b7c5.zip | |
Merge pull request #2695 from robbak/init_cpp-explicit_cast
Explictly cast calculation to int, to allow std::min 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 59bf32eca..767d7525a 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -531,7 +531,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.")); |