summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-10-07 10:44:43 -0700
committerLei Zhang <thestig@chromium.org>2015-10-07 10:44:43 -0700
commit80aa8c26887d98f654a9eecf7298663656cfc40f (patch)
treeef6b3ea7bb37d81dcee705dc5de7cc17df5d48c1
parent8a9ce5778e0789beb7ba15a62c592a353a51bcdd (diff)
downloadpdfium-80aa8c26887d98f654a9eecf7298663656cfc40f.tar.xz
Fix the Windows build after commit 8a9ce57.
TBR=tsepez@chromium.org Review URL: https://codereview.chromium.org/1396533002 .
-rw-r--r--core/src/fxcodec/jbig2/JBig2_Context.cpp2
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) {