diff options
| author | Xusheng <xusheng@vector35.com> | 2021-11-25 12:33:01 +0800 |
|---|---|---|
| committer | Xusheng <xusheng@vector35.com> | 2021-11-25 14:10:09 +0800 |
| commit | c2f1be9bf2a47da7738d330f5bc864030cc76f22 (patch) | |
| tree | 4c62665f320a20d0cb13d0a04bbd6973c7360a5d | |
| parent | ff42df855052834994b9b7aba8960311561366c9 (diff) | |
Call correct functions in the binary view callback
| -rw-r--r-- | binaryview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binaryview.cpp b/binaryview.cpp index fb9b9340..145067d5 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -987,7 +987,7 @@ bool BinaryView::IsExecutableCallback(void* ctxt) BNEndianness BinaryView::GetDefaultEndiannessCallback(void* ctxt) { BinaryView* view = (BinaryView*)ctxt; - return view->GetDefaultEndianness(); + return view->PerformGetDefaultEndianness(); } @@ -1001,7 +1001,7 @@ bool BinaryView::IsRelocatableCallback(void* ctxt) size_t BinaryView::GetAddressSizeCallback(void* ctxt) { BinaryView* view = (BinaryView*)ctxt; - return view->GetAddressSize(); + return view->PerformGetAddressSize(); } |
