diff --git a/src/Common.sol b/src/Common.sol index 8c9abda8..e231aed8 100644 --- a/src/Common.sol +++ b/src/Common.sol @@ -437,7 +437,7 @@ function prbExp2(uint256 x) pure returns (uint256 result) { } } - if (x & 0xFF00000000 > 0) { + if (x & 0xFF000000 > 0) { if (x & 0x80000000 > 0) { result = (result * 0x10000000058B90BFC) >> 64; }