From ff35ee3e1a85e8362db0dc843252a53e716e3007 Mon Sep 17 00:00:00 2001 From: jj Date: Wed, 20 Jul 2022 19:38:51 +0200 Subject: [PATCH] idaremote: fix deprecated warning --- samples/ida/idaremote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/ida/idaremote.py b/samples/ida/idaremote.py index 30c96738..d31b3a2b 100644 --- a/samples/ida/idaremote.py +++ b/samples/ida/idaremote.py @@ -358,7 +358,7 @@ def cmd_get_entry(self, idx): # return 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():