key_manager: Correct casing of instance()

Our codebase uppercases member function names.
This commit is contained in:
Lioncash
2020-07-01 00:28:49 -04:00
parent c91710a82f
commit fb13f053bb
10 changed files with 10 additions and 10 deletions

View File

@ -88,7 +88,7 @@ public:
protected:
// A single instance of KeyManager to be used by GetEntry()
Core::Crypto::KeyManager& keys = Core::Crypto::KeyManager::instance();
Core::Crypto::KeyManager& keys = Core::Crypto::KeyManager::Instance();
};
class PlaceholderCache {