Correct build error in non-hidl WVDrmPlugin am: 80463a0eea

Original change: https://googleplex-android-review.googlesource.com/c/platform/vendor/widevine/+/16058123

Change-Id: Ibfba7d0ec38fb2ddc9b46b4821f34b9c28f9c9f3
This commit is contained in:
Fred Gylys-Colwell
2021-10-28 17:02:15 +00:00
committed by Automerger Merge Worker

View File

@@ -675,7 +675,7 @@ status_t WVDrmPlugin::setPropertyString(const String8& name,
if (ss.fail()) {
ALOGE("Could not parse an integer from '%s'", value.string());
count = 0;
return Status::BAD_VALUE;
return android::BAD_VALUE;
}
CdmResponseType res = mCDM->SetDebugIgnoreKeyboxCount(count);
return mapCdmResponseType(res);