summaryrefslogtreecommitdiff
path: root/architecture.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'architecture.cpp')
-rw-r--r--architecture.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/architecture.cpp b/architecture.cpp
index a3bd77fa..9415b966 100644
--- a/architecture.cpp
+++ b/architecture.cpp
@@ -2208,9 +2208,9 @@ void ArchitectureHook::Register(BNCustomArchitecture* callbacks)
string DisassemblyTextRenderer::GetDisplayStringForInteger(Ref<BinaryView> binaryView, BNIntegerDisplayType type,
- uint64_t value, size_t inputWidth)
+ uint64_t value, size_t inputWidth, bool isSigned)
{
- char* str = BNGetDisplayStringForInteger(binaryView->GetObject(), type, value, inputWidth);
+ char* str = BNGetDisplayStringForInteger(binaryView->GetObject(), type, value, inputWidth, isSigned);
string s(str);
BNFreeString(str);
return s;