summaryrefslogtreecommitdiff
path: root/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxbarcode/common/BC_CommonBitMatrix.cpp')
-rw-r--r--xfa/fxbarcode/common/BC_CommonBitMatrix.cpp2
1 files changed, 1 insertions, 1 deletions
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;