summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
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: