diff options
author | Lei Zhang <thestig@chromium.org> | 2015-10-07 10:44:43 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-10-07 10:44:43 -0700 |
commit | 80aa8c26887d98f654a9eecf7298663656cfc40f (patch) | |
tree | ef6b3ea7bb37d81dcee705dc5de7cc17df5d48c1 /core/src/fxcodec/jbig2 | |
parent | 8a9ce5778e0789beb7ba15a62c592a353a51bcdd (diff) | |
download | pdfium-80aa8c26887d98f654a9eecf7298663656cfc40f.tar.xz |
Fix the Windows build after commit 8a9ce57.
TBR=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1396533002 .
Diffstat (limited to 'core/src/fxcodec/jbig2')
-rw-r--r-- | core/src/fxcodec/jbig2/JBig2_Context.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/fxcodec/jbig2/JBig2_Context.cpp b/core/src/fxcodec/jbig2/JBig2_Context.cpp index 3e0ebb36e3..e8d4bb8cc8 100644 --- a/core/src/fxcodec/jbig2/JBig2_Context.cpp +++ b/core/src/fxcodec/jbig2/JBig2_Context.cpp @@ -1293,7 +1293,7 @@ int32_t CJBig2_Context::parseRegionInfo(JBig2RegionInfo* pRI) { JBig2HuffmanCode* CJBig2_Context::decodeSymbolIDHuffmanTable( CJBig2_BitStream* pStream, FX_DWORD SBNUMSYMS) { - size_t kRunCodesSize = 35; + const size_t kRunCodesSize = 35; int32_t runcodes[kRunCodesSize]; int32_t runcodes_len[kRunCodesSize]; for (int32_t i = 0; i < kRunCodesSize; ++i) { |