Match va_start and va_end calls, pointed by clang-tidy #176

Closed
bvbfan wants to merge 277 commits from va_brach into master
Showing only changes of commit 7859b72ab4 - Show all commits

View file

@ -2130,7 +2130,7 @@ int CClaimTrieCache::getDelayForName(const std::string& name) const
int nHeightOfLastTakeover;
if (getLastTakeoverForName(name, nHeightOfLastTakeover))
{
return (nCurrentHeight - nHeightOfLastTakeover) / base->nProportionalDelayFactor;
return std::min((nCurrentHeight - nHeightOfLastTakeover) / base->nProportionalDelayFactor, 4032);
}
else
{