summaryrefslogtreecommitdiff
path: root/python/highlevelil.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2023-05-11 15:06:38 -0400
committerPeter LaFosse <peter@vector35.com>2023-05-11 15:06:38 -0400
commit6ce35d0e771140d193ada89bc300e460b5931c18 (patch)
treed31ea9f1c912c11ae2d46928a78162e8148a9178 /python/highlevelil.py
parenta843a47e36cb1a166623abac70a38d716743c485 (diff)
Fix HLILForSSA.body property
Diffstat (limited to 'python/highlevelil.py')
-rw-r--r--python/highlevelil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py
index ba8a75ce..9ad6cb2f 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -1083,7 +1083,7 @@ class HighLevelILForSsa(HighLevelILInstruction, Loop, SSA):
@property
def body(self) -> HighLevelILInstruction:
- return self.get_expr(3)
+ return self.get_expr(4)
@property
def detailed_operands(self) -> List[Tuple[str, HighLevelILOperandType, str]]: