summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/lowlevelil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 2324efa4..f6911048 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -5584,7 +5584,7 @@ class LowLevelILFunction:
:rtype: ExpressionIndex
"""
label_list = (ctypes.POINTER(core.BNLowLevelILLabel) * len(labels))()
- value_list = (ctypes.POINTER(ctypes.c_ulonglong) * len(labels))()
+ value_list = (ctypes.c_ulonglong * len(labels))()
for i, (key, value) in enumerate(labels.items()):
value_list[i] = key
label_list[i] = value.handle