Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
yufengwangca committed Jan 12, 2023
1 parent 8b14201 commit 852806a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/java/DeviceAttestationDelegateBridge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void DeviceAttestationDelegateBridge::OnDeviceAttestationCompleted(
const chip::Credentials::DeviceAttestationVerifier::AttestationDeviceInfo & info,
chip::Credentials::AttestationVerificationResult attestationResult)
{
ChipLogProgress(Controller, "OnDeviceAttestationCompleted with result: %hu", attestationResult);
ChipLogProgress(Controller, "OnDeviceAttestationCompleted with result: %hu", static_cast<uint16_t>(attestationResult));

mResult = attestationResult;
if (mDeviceAttestationDelegate != nullptr)
Expand Down

0 comments on commit 852806a

Please sign in to comment.