summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2017-03-22 19:28:43 -0400
committerJordan Wiens <jordan@psifertex.com>2017-03-22 19:28:43 -0400
commitddaf7506e1802cfd4f9c78bcfb14deb0180b04d8 (patch)
treefc192c0e58b87e1eae35077fd7cfb3110043fab8 /python
parentb7509f379376a828b99cf71294b74d4f47ddbf91 (diff)
update basicblock.annotations to new argument order for function.get_block_annotations
Diffstat (limited to 'python')
-rw-r--r--python/basicblock.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/basicblock.py b/python/basicblock.py
index 9f256aa7..5bec391b 100644
--- a/python/basicblock.py
+++ b/python/basicblock.py
@@ -194,7 +194,7 @@ class BasicBlock(object):
@property
def annotations(self):
"""List of automatic annotations for the start of this block (read-only)"""
- return self.function.get_block_annotations(self.arch, self.start)
+ return self.function.get_block_annotations(self.start, self.arch)
@property
def disassembly_text(self):