summaryrefslogtreecommitdiff
path: root/xfa/src/fxbarcode/common/BC_CommonByteMatrix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/src/fxbarcode/common/BC_CommonByteMatrix.cpp')
-rw-r--r--xfa/src/fxbarcode/common/BC_CommonByteMatrix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/src/fxbarcode/common/BC_CommonByteMatrix.cpp b/xfa/src/fxbarcode/common/BC_CommonByteMatrix.cpp
index da4741d11a..d963eb9f5e 100644
--- a/xfa/src/fxbarcode/common/BC_CommonByteMatrix.cpp
+++ b/xfa/src/fxbarcode/common/BC_CommonByteMatrix.cpp
@@ -31,7 +31,7 @@ CBC_CommonByteMatrix::CBC_CommonByteMatrix(int32_t width, int32_t height)
void CBC_CommonByteMatrix::Init()
{
m_bytes = FX_Alloc(uint8_t, m_height * m_width);
- FXSYS_memset8(m_bytes, 0xff, m_height * m_width);
+ FXSYS_memset(m_bytes, 0xff, m_height * m_width);
}
CBC_CommonByteMatrix::~CBC_CommonByteMatrix()
{