aboutsummaryrefslogtreecommitdiffstats
path: root/idatui
diff options
context:
space:
mode:
Diffstat (limited to 'idatui')
-rw-r--r--idatui/domain.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/idatui/domain.py b/idatui/domain.py
index 1f52be6..55a95d5 100644
--- a/idatui/domain.py
+++ b/idatui/domain.py
@@ -426,7 +426,7 @@ class Program:
# Cached before a rename: names may be stale. Drop the server's
# Hex-Rays cache so the refetch reflects the new names.
try:
- self.client.call("force_recompile", addr=hex(ea))
+ self.client.call("force_recompile", items=[{"addr": hex(ea)}])
except Exception: # noqa: BLE001
pass
envelope = self.client.call_envelope("decompile", addr=hex(ea))