Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ValekoZ committed Sep 27, 2024
1 parent 55a1649 commit 60215b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gef.py
Original file line number Diff line number Diff line change
Expand Up @@ -8936,7 +8936,7 @@ def do_invoke(self, _: List[str], **kwargs: Any) -> None:
names_filter = [f"name = '{x}'" for x in names if x in entry.path]
addrs_filter = [f"addr = {self.format_addr_filter(arg, addr)}" for arg, addr in addrs.items()
if entry.page_start <= addr < entry.page_end]
filter_content = f"[{' & '.join([*names filter, *addrs_filter])}]"
filter_content = f"[{' & '.join([*names_filter, *addrs_filter])}]"

if len(names) + len(addrs) == 0:
self.print_entry(entry)
Expand Down

0 comments on commit 60215b4

Please sign in to comment.