summaryrefslogtreecommitdiff
path: root/python/binaryview.py
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2025-11-19 12:40:56 -0500
committerJosh Ferrell <josh@vector35.com>2025-11-19 15:05:16 -0500
commit9cc7fe08e830bff66ec0a6f106b647138f87766a (patch)
tree76c723efb805aa8017808ea3fcbbd6a04dbcea9e /python/binaryview.py
parentdae5a014ccbfe5a99379163b49e426eeb0b9e766 (diff)
Fix BinaryView.set_manual_type_source_override
Diffstat (limited to 'python/binaryview.py')
-rw-r--r--python/binaryview.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/binaryview.py b/python/binaryview.py
index 5f93e5d1..5c49a697 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -8764,7 +8764,7 @@ to a the type "tagRECT" found in the typelibrary "winX64common"
src_names = (core.BNQualifiedName * count)()
dst_names = (core.BNQualifiedName * count)()
lib_names = (ctypes.c_char_p * count)()
- for (i, src, (dst, lib)) in enumerate(entries.items()):
+ for (i, (src, (dst, lib))) in enumerate(entries.items()):
src_names[i] = src._to_core_struct()
dst_names[i] = dst._to_core_struct()
lib_names[i] = lib.encode("utf-8")