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 172f6aca32 - Show all commits

View file

@ -1,6 +1,7 @@
#include "lbry.h" #include "lbry.h"
#include "uint256.h" #include "uint256.h"
#include <cstdio> #include <cstdio>
unsigned int CalculateLbryNextWorkRequired(const CBlockIndex* pindexLast, int64_t nFirstBlockTime, const Consensus::Params& params) unsigned int CalculateLbryNextWorkRequired(const CBlockIndex* pindexLast, int64_t nFirstBlockTime, const Consensus::Params& params)
{ {
if (params.fPowNoRetargeting) if (params.fPowNoRetargeting)
@ -26,9 +27,7 @@ unsigned int CalculateLbryNextWorkRequired(const CBlockIndex* pindexLast, int64_
// Retarget // Retarget
const arith_uint256 bnPowLimit = UintToArith256(params.powLimit); const arith_uint256 bnPowLimit = UintToArith256(params.powLimit);
arith_uint256 bnNew; arith_uint256 bnNew;
arith_uint256 bnOld;
bnNew.SetCompact(pindexLast->nBits); bnNew.SetCompact(pindexLast->nBits);
bnOld = bnNew;
bnNew *= nModulatedTimespan; bnNew *= nModulatedTimespan;
bnNew /= retargetTimespan; bnNew /= retargetTimespan;
if (bnNew > bnPowLimit) if (bnNew > bnPowLimit)