diff options
Diffstat (limited to 'example/disasm/full.py')
| -rw-r--r-- | example/disasm/full.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/disasm/full.py b/example/disasm/full.py index 9e953122..7f523a23 100644 --- a/example/disasm/full.py +++ b/example/disasm/full.py @@ -89,7 +89,7 @@ addrs = [int(a, 16) for a in args.address] if len(addrs) == 0 and default_addr is not None: addrs.append(default_addr) for ad in addrs: - todo = [(mdis, None, ad)] + todo += [(mdis, None, ad)] done = set() all_funcs = set() |