diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2020-03-20 15:24:34 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2020-03-20 15:24:34 -0400 |
| commit | ec2e578715a01fc8cc22fd7743042e53c7b5f584 (patch) | |
| tree | 457a98722609361bd1087715fbabf6a04c172cd5 | |
| parent | 4754b16537278cc95d6614d1f9a5c1dd7bc81a90 (diff) | |
fixing minimim typo throughout api
| -rw-r--r-- | binaryninjaapi.h | 2 | ||||
| -rw-r--r-- | binaryninjacore.h | 2 | ||||
| -rw-r--r-- | pluginmanager.cpp | 4 | ||||
| -rw-r--r-- | python/pluginmanager.py | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 922d2798..a3bf8578 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -4707,7 +4707,7 @@ __attribute__ ((format (printf, 1, 2))) std::string GetRepository() const; std::string GetProjectData(); std::string GetInstallInstructions(const std::string& platform) const; - uint64_t GetMinimimVersion() const; + uint64_t GetMinimumVersion() const; uint64_t GetLastUpdate(); bool IsBeingDeleted() const; bool IsBeingUpdated() const; diff --git a/binaryninjacore.h b/binaryninjacore.h index b19af253..2a6f782b 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -4062,7 +4062,7 @@ __attribute__ ((format (printf, 1, 2))) BINARYNINJACOREAPI const char* BNPluginGetLicense(BNRepoPlugin* p); BINARYNINJACOREAPI const char* BNPluginGetLicenseText(BNRepoPlugin* p); BINARYNINJACOREAPI const char* BNPluginGetLongdescription(BNRepoPlugin* p); - BINARYNINJACOREAPI uint64_t BNPluginGetMinimimVersion(BNRepoPlugin* p); + BINARYNINJACOREAPI uint64_t BNPluginGetMinimumVersion(BNRepoPlugin* p); BINARYNINJACOREAPI const char* BNPluginGetName(BNRepoPlugin* p); BINARYNINJACOREAPI const char* BNPluginGetProjectUrl(BNRepoPlugin* p); BINARYNINJACOREAPI const char* BNPluginGetPackageUrl(BNRepoPlugin* p); diff --git a/pluginmanager.cpp b/pluginmanager.cpp index 9572d362..8f57f2f8 100644 --- a/pluginmanager.cpp +++ b/pluginmanager.cpp @@ -73,9 +73,9 @@ string RepoPlugin::GetLongdescription() const RETURN_STRING(BNPluginGetLongdescription(m_object)); } -uint64_t RepoPlugin::GetMinimimVersion() const +uint64_t RepoPlugin::GetMinimumVersion() const { - return BNPluginGetMinimimVersion(m_object); + return BNPluginGetMinimumVersion(m_object); } string RepoPlugin::GetName() const diff --git a/python/pluginmanager.py b/python/pluginmanager.py index 261b88a6..e4defb28 100644 --- a/python/pluginmanager.py +++ b/python/pluginmanager.py @@ -116,7 +116,7 @@ class RepoPlugin(object): @property def minimum_version(self): """String minimum version the plugin was tested on""" - return core.BNPluginGetMinimimVersion(self.handle) + return core.BNPluginGetMinimumVersion(self.handle) @property def name(self): |
