diff options
| author | Josh Ferrell <josh@vector35.com> | 2025-11-19 12:40:56 -0500 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2025-11-19 15:05:16 -0500 |
| commit | 9cc7fe08e830bff66ec0a6f106b647138f87766a (patch) | |
| tree | 76c723efb805aa8017808ea3fcbbd6a04dbcea9e /python/binaryview.py | |
| parent | dae5a014ccbfe5a99379163b49e426eeb0b9e766 (diff) | |
Fix BinaryView.set_manual_type_source_override
Diffstat (limited to 'python/binaryview.py')
| -rw-r--r-- | python/binaryview.py | 2 |
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") |
