Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
herosi authored Aug 26, 2024
1 parent 05a27e5 commit 082c5b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cto/cto.py
Original file line number Diff line number Diff line change
Expand Up @@ -1807,7 +1807,7 @@ def filter_nodes(self, node_id):
first_flag = True
for i, ea in enumerate(r):
if self.config.debug: self.dbg_print("i: %d, node_ea:%x, loop_ea: %x, additonal_trace_points:%s, related_nodes: %s" % (i, node_ea, ea, str([hex(x).rstrip("L") for x in self.additional_trace_points]), str([hex(x).rstrip("L") for x in self.related_nodes[ea]])))
# if the path starts in the midle of the additional trace points, ignore the first node.
# if the path starts in the middle of the additional trace points, ignore the first node.
if first_flag and self.start_ea == start_ea:
# if flag is turned on, remove the additional tracing point and further ones.
if self.config.debug: self.dbg_print("remove_flag turned on, but it will affect next time")
Expand Down
2 changes: 1 addition & 1 deletion cto/cto_func_lister.py
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@ def on_item_changed(self, idx, old_val, new_val):
else:
# change the name to modified name that the specific charasters are replaced
item.setText(name)
# refresh other cto instanses
# refresh other cto instances
self.refresh_all(ea)
refreshed = True
else:
Expand Down

0 comments on commit 082c5b0

Please sign in to comment.