summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2023-02-14 17:48:23 -0500
committerGlenn Smith <glenn@vector35.com>2023-02-14 17:56:54 -0500
commit7829801632556958526537447495764541534147 (patch)
tree07e532e94d19d6733257a517adfef1f9b3f58093 /python/lowlevelil.py
parent0a41de02d27174ecb9d2f6ae439267b9428f04ea (diff)
Add DisassemblySettings to LLIL::GetExprText
To make possible the next commit
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 0b112331..23830acb 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -549,7 +549,7 @@ class LowLevelILInstruction(BaseILInstruction):
assert self.function.arch is not None, f"self.function.arch is None"
tokens = ctypes.POINTER(core.BNInstructionTextToken)()
result = core.BNGetLowLevelILExprText(
- self.function.handle, self.function.arch.handle, self.expr_index, tokens, count
+ self.function.handle, self.function.arch.handle, self.expr_index, None, tokens, count
)
assert result, "core.BNGetLowLevelILExprText returned False"
try: