From e7bf7eced13853ef10a38949117679aac5f60a77 Mon Sep 17 00:00:00 2001 From: Jordan Date: Sat, 14 Sep 2024 17:07:35 -0400 Subject: Fix function size limit in batch --- docs/dev/batch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/dev') 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 -- cgit v1.3.1