summaryrefslogtreecommitdiff
path: root/docs/dev
diff options
context:
space:
mode:
authorJordan <github@psifertex.com>2024-09-14 17:07:35 -0400
committerGitHub <noreply@github.com>2024-09-14 17:07:35 -0400
commite7bf7eced13853ef10a38949117679aac5f60a77 (patch)
tree0ce514e595073726e5b40d2b1956c66d14419c41 /docs/dev
parent0f34db27cb60990e6b1b200820e814366ec99452 (diff)
Fix function size limit in batch
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/batch.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/batch.md b/docs/dev/batch.md
index 9b53a5ab..e9419999 100644
--- a/docs/dev/batch.md
+++ b/docs/dev/batch.md
@@ -82,7 +82,7 @@ A common workflow is to analyze a single (or small number) of functions in a par
```python
from binaryninja import load
-with load("/bin/ls", options={'analysis.limits.maxFunctionSize': 0}) as bv:
+with load("/bin/ls", options={'analysis.limits.maxFunctionSize': 1}) as bv:
fn = bv.entry_function
# Alternatively, use add_user_function at a particular address to first
# create the function