From 736f28ab2434e2da1de66ff91b64741483ff9cba Mon Sep 17 00:00:00 2001 From: tsepez Date: Fri, 25 Mar 2016 14:19:51 -0700 Subject: Remove FX_DWORD from XFA. Review URL: https://codereview.chromium.org/1830323006 --- xfa/fxbarcode/common/BC_CommonBitMatrix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xfa/fxbarcode/common') diff --git a/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp b/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp index a8f87e7ec4..4fff7b1a84 100644 --- a/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp +++ b/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp @@ -54,7 +54,7 @@ FX_BOOL CBC_CommonBitMatrix::Get(int32_t x, int32_t y) { if (offset >= m_rowSize * m_height || offset < 0) { return false; } - return ((((FX_DWORD)m_bits[offset]) >> (x & 0x1f)) & 1) != 0; + return ((((uint32_t)m_bits[offset]) >> (x & 0x1f)) & 1) != 0; } int32_t* CBC_CommonBitMatrix::GetBits() { return m_bits; -- cgit v1.2.3