diff --git a/libwvdrmengine/cdm/core/test/test_printers.cpp b/libwvdrmengine/cdm/core/test/test_printers.cpp index e3400967..0b1b6b1e 100644 --- a/libwvdrmengine/cdm/core/test/test_printers.cpp +++ b/libwvdrmengine/cdm/core/test/test_printers.cpp @@ -1220,6 +1220,9 @@ void PrintTo(const enum OEMCryptoResult& value, ::std::ostream* os) { case OPK_ERROR_REMOTE_CALL: *os << "REMOTE_CALL"; break; + case OPK_ERROR_NO_PERSISTENT_DATA: + *os << "NO_PERSISTENT_DATA"; + break; } } namespace okp { diff --git a/libwvdrmengine/oemcrypto/odk/include/OEMCryptoCENCCommon.h b/libwvdrmengine/oemcrypto/odk/include/OEMCryptoCENCCommon.h index e445a0c2..2715ea27 100644 --- a/libwvdrmengine/oemcrypto/odk/include/OEMCryptoCENCCommon.h +++ b/libwvdrmengine/oemcrypto/odk/include/OEMCryptoCENCCommon.h @@ -100,7 +100,8 @@ typedef enum OEMCryptoResult { /* OPK return values */ OPK_ERROR_BASE = 2000, OPK_ERROR_REMOTE_CALL = OPK_ERROR_BASE, - OPK_ERROR_INCOMPATIBLE_VERSION = OPK_ERROR_BASE + 1 + OPK_ERROR_INCOMPATIBLE_VERSION = OPK_ERROR_BASE + 1, + OPK_ERROR_NO_PERSISTENT_DATA = OPK_ERROR_BASE + 2, } OEMCryptoResult; /* clang-format on */