Skip to content

Commit c91837c

Browse files
committed
fix max dicts in analyzer scripts
1 parent 719020b commit c91837c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/backalyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def main():
3737
KEY_PAGES = 1
3838
global PAGE_SIZE
3939
global VPAGE_SIZE
40-
MAX_DICTS = 16384
40+
MAX_DICTS = 16383
4141
# this is for an older set of CI tests from the pddbg.py script, that are not set up for this implementation
4242
set_ci_tests_flag(False)
4343

tools/pddbdbg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def main():
9797
KEY_PAGES = 1
9898
global PAGE_SIZE
9999
global VPAGE_SIZE
100-
MAX_DICTS = 16384
100+
MAX_DICTS = 16383
101101

102102
with open(imagefile, 'rb') as img_f:
103103
raw_img = img_f.read()

0 commit comments

Comments
 (0)