From 547f60114d42d3d26c88a5e90cecd9196a09f696 Mon Sep 17 00:00:00 2001 From: rollsafe Date: Tue, 11 Jun 2019 18:21:55 -0400 Subject: Fix typo in function for user code refs --- python/function.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/function.py') diff --git a/python/function.py b/python/function.py index 56ba5f9c..e853670a 100644 --- a/python/function.py +++ b/python/function.py @@ -1313,7 +1313,7 @@ class Function(object): if from_arch is None: from_arch = self.arch - core.BNAddUserCodeRef(self.handle, from_arch.handle, from_addr, to_addr) + core.BNAddUserCodeReference(self.handle, from_arch.handle, from_addr, to_addr) def remove_user_code_ref(self, from_addr, to_addr, from_arch=None): """ @@ -1334,7 +1334,7 @@ class Function(object): if from_arch is None: from_arch = self.arch - core.BNRemoveUserCodeRef(self.handle, from_arch.handle, from_addr, to_addr) + core.BNRemoveUserCodeReference(self.handle, from_arch.handle, from_addr, to_addr) def get_low_level_il_at(self, addr, arch=None): """ -- cgit v1.3.1