Fix logging error type

Merge from Widevine repo of http://go/wvgerrit/166942

The error type is no longer an enumeration.

Bug: 271146682

Change-Id: I64f60fde94d1e8a586128a59f1455041622444b6
This commit is contained in:
Fred Gylys-Colwell
2023-02-28 12:09:10 -08:00
parent ce25b9d44c
commit ab8c06906a

View File

@@ -116,7 +116,7 @@ static inline WvStatus mapCdmResponseType(wvcdm::CdmResponseType res) {
case wvcdm::REWRAP_DEVICE_RSA_KEY_ERROR:
case wvcdm::PARSE_OKP_RESPONSE_ERROR:
case wvcdm::OKP_ALREADY_PROVISIONED:
ALOGW("Returns UNKNOWN error for legacy status: %d", res);
ALOGW("Returns UNKNOWN error for legacy status: %u", res.Enum());
err = Status::ERROR_DRM_UNKNOWN;
break;