Correct build error in non-hidl WVDrmPlugin

This fix was missing in the last merge of http://go/wvgerrit/135063

Bug: 187646550
Merged-In: I2b2252f8335c36325fd76d92ac26b9fbfcff5362
Change-Id: I2b2252f8335c36325fd76d92ac26b9fbfcff5362
This commit is contained in:
Fred Gylys-Colwell
2021-10-14 03:17:53 +00:00
committed by Alex Dale
parent c21b756451
commit 80463a0eea

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);