Fix warning

This commit is contained in:
Vinnie Falco
2013-07-17 18:23:13 -07:00
parent 37cc356945
commit 25f1a729ce

View File

@@ -818,7 +818,7 @@ int Pathfinder::getPathsOut (const uint160& currencyID, const uint160& accountID
return it->second;
int aFlags = mLedger->getSLEi(Ledger::getAccountRootIndex(accountID))->getFieldU32(sfFlags);
bool bAuthRequired = aFlags & lsfRequireAuth;
bool const bAuthRequired = (aFlags & lsfRequireAuth) != 0;
int count = 0;
AccountItems& rippleLines (mRLCache->getRippleLines (accountID));