Fix OEMCrypto_GetBCCType() in dynamic adapter

Correct a typo that breaks the build.

Test: run_dynamic_oemcrypto_v18
Bug: 307812015
Change-Id: I0c5defcd933258ccf927657baa28d8546ae5303c
This commit is contained in:
Cong Lin
2023-10-25 15:52:15 -07:00
committed by Robert Shih
parent 1daf69dc6f
commit dbab54191b

View File

@@ -1561,7 +1561,7 @@ OEMCrypto_ProvisioningMethod OEMCrypto_GetProvisioningMethod(
return fcn->GetProvisioningMethod();
}
OEMCryptoResult OEMCrypto_GetBCCType(OEMCrypto_GetBCCType* bcc_type) {
OEMCryptoResult OEMCrypto_GetBCCType(OEMCrypto_BCCType* bcc_type) {
if (!gAdapter) return OEMCrypto_ERROR_UNKNOWN_FAILURE;
const FunctionPointers* fcn = gAdapter->GetFunctionPointers(kLevelDefault);
if (!fcn) return OEMCrypto_ERROR_INVALID_SESSION;