diff options
| author | Chinmay <chinmay1dd@gmail.com> | 2020-09-09 22:17:15 -0700 |
|---|---|---|
| committer | Chinmay Deshpande <chinmay1dd@gmail.com> | 2020-09-10 08:45:04 -0700 |
| commit | 167ced17956bbb79aee3a6e6ef88079d822427cb (patch) | |
| tree | 0a991c4954d9e8f427d34057716795a508fe2b1c /binaryview.cpp | |
| parent | 78ae59ac4998ac66ff104f1ac6ef365b301feb43 (diff) | |
Update API name for ParsePossibleValueSet
Diffstat (limited to 'binaryview.cpp')
| -rw-r--r-- | binaryview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 = ""; |
