Skip to content

Commit

Permalink
idaremote: fix deprecated warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jjyg committed Jul 20, 2022
1 parent 5e4b1b2 commit ff35ee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/ida/idaremote.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def cmd_get_entry(self, idx):
# return <cpu_name> <word size> <endianness>
def cmd_get_cpuinfo(self):
info = idaapi.get_inf_structure()
cpu_name = info.procName
cpu_name = info.procname
if info.is_64bit():
word_size = 64
elif info.is_32bit():
Expand Down

0 comments on commit ff35ee3

Please sign in to comment.