diff options
| author | Xusheng <xusheng@vector35.com> | 2020-09-06 10:25:27 +0800 |
|---|---|---|
| committer | Xusheng <xusheng@vector35.com> | 2020-09-06 10:28:24 +0800 |
| commit | 8107ec4778fc4bcb657974438a7c12131d62644a (patch) | |
| tree | fad04136ec6a15c1fe4d1b3cd4f584d28e97b142 /binaryview.cpp | |
| parent | 01ca18b5aa4377a353df040f14f6c2a1490cb0cf (diff) | |
fix parse_types_from_string()
Diffstat (limited to 'binaryview.cpp')
| -rw-r--r-- | binaryview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryview.cpp b/binaryview.cpp index 9374c9b8..8d78c4b3 100644 --- a/binaryview.cpp +++ b/binaryview.cpp @@ -2500,7 +2500,7 @@ bool BinaryView::ParseTypeString(const string& source, map<QualifiedName, Ref<Ty i ++; } - bool ok = BNParseTypesString(m_object, source.c_str(), &result, &errorStr, typesList); + bool ok = BNParseTypesString(m_object, source.c_str(), &result, &errorStr, &typesList); if (errorStr) { errors = errorStr; |
