Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
fix #29
Browse files Browse the repository at this point in the history
  • Loading branch information
Cedric Halbronn committed Mar 3, 2020
1 parent 4dc5c10 commit 51e7c04
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions idarling/core/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -1120,11 +1120,11 @@ def __call__(self):
ol = ida_hexrays.operand_locator_t(_ol["ea"], _ol["opnum"])
nf = ida_hexrays.number_format_t()
nf.flags = _nf["flags"]
nf.opnum = Event.encode(_nf["opnum"])
nf.props = Event.encode(_nf["props"])
nf.opnum = _nf["opnum"]
nf.props = _nf["props"]
nf.serial = _nf["serial"]
nf.org_nbytes = Event.encode(_nf["org_nbytes"])
nf.type_name = Event.encode(_nf["type_name"])
nf.org_nbytes = _nf["org_nbytes"]
nf.type_name = _nf["type_name"]
ida_hexrays.user_numforms_insert(numforms, ol, nf)
ida_hexrays.save_user_numforms(self.ea, numforms)
HexRaysEvent.refresh_pseudocode_view(self.ea)

0 comments on commit 51e7c04

Please sign in to comment.