Skip to content

Commit

Permalink
fix max dicts in analyzer scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
bunnie committed Nov 3, 2022
1 parent 719020b commit c91837c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/backalyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def main():
KEY_PAGES = 1
global PAGE_SIZE
global VPAGE_SIZE
MAX_DICTS = 16384
MAX_DICTS = 16383
# this is for an older set of CI tests from the pddbg.py script, that are not set up for this implementation
set_ci_tests_flag(False)

Expand Down
2 changes: 1 addition & 1 deletion tools/pddbdbg.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def main():
KEY_PAGES = 1
global PAGE_SIZE
global VPAGE_SIZE
MAX_DICTS = 16384
MAX_DICTS = 16383

with open(imagefile, 'rb') as img_f:
raw_img = img_f.read()
Expand Down

0 comments on commit c91837c

Please sign in to comment.