Skip to content

Commit

Permalink
Merge pull request #45 from doronz88/bugfix/objc-monitor
Browse files Browse the repository at this point in the history
objective_c_class: fix `monitor()`
  • Loading branch information
doronz88 authored Feb 9, 2024
2 parents 5eb29b7 + e33c2b3 commit 76a2a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hilda/objective_c_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def symbols_jar(self) -> SymbolsJar:
jar = SymbolsJar.create(self._client)

for m in self.methods:
jar[f'[{self.name} {m.name}]'] = m.address
jar[f'[{self.name} {m.name}]'] = m.imp

return jar

Expand Down

0 comments on commit 76a2a39

Please sign in to comment.