Skip to content

Commit

Permalink
Reorder M68KOp elements to match order on C side (capstone-engine#1067)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalmalyzer authored and aquynh committed Jan 2, 2018
1 parent d19cedc commit f127444
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/python/capstone/m68k.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ class M68KOpValue(ctypes.Union):
class M68KOp(ctypes.Structure):
_fields_ = (
('value', M68KOpValue),
('type', ctypes.c_uint),
('mem', M68KOpMem),
('register_bits', ctypes.c_uint),
('type', ctypes.c_uint),
('address_mode', ctypes.c_uint),
)

Expand Down

0 comments on commit f127444

Please sign in to comment.