From 167ced17956bbb79aee3a6e6ef88079d822427cb Mon Sep 17 00:00:00 2001 From: Chinmay Date: Wed, 9 Sep 2020 22:17:15 -0700 Subject: Update API name for ParsePossibleValueSet --- binaryview.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'binaryview.cpp') diff --git a/binaryview.cpp b/binaryview.cpp index 3953cee6..11a6c032 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -2446,12 +2446,12 @@ uint64_t BinaryView::GetPreviousDataVariableStartBeforeAddress(uint64_t addr) } -bool BinaryView::ParsePossibleValueSetString(const string& value, BNRegisterValueType state, PossibleValueSet& result, uint64_t here, string& errors) +bool BinaryView::ParsePossibleValueSet(const string& value, BNRegisterValueType state, PossibleValueSet& result, uint64_t here, string& errors) { BNPossibleValueSet res; char* errorStr; - if (!BNParsePossibleValueSetString(m_object, value.c_str(), state, &res, here, &errorStr)) + if (!BNParsePossibleValueSet(m_object, value.c_str(), state, &res, here, &errorStr)) { if (!errorStr) errors = ""; -- cgit v1.3.1