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:
committed by
Alex Dale
parent
c21b756451
commit
80463a0eea
@@ -675,7 +675,7 @@ status_t WVDrmPlugin::setPropertyString(const String8& name,
|
|||||||
if (ss.fail()) {
|
if (ss.fail()) {
|
||||||
ALOGE("Could not parse an integer from '%s'", value.string());
|
ALOGE("Could not parse an integer from '%s'", value.string());
|
||||||
count = 0;
|
count = 0;
|
||||||
return Status::BAD_VALUE;
|
return android::BAD_VALUE;
|
||||||
}
|
}
|
||||||
CdmResponseType res = mCDM->SetDebugIgnoreKeyboxCount(count);
|
CdmResponseType res = mCDM->SetDebugIgnoreKeyboxCount(count);
|
||||||
return mapCdmResponseType(res);
|
return mapCdmResponseType(res);
|
||||||
|
|||||||
Reference in New Issue
Block a user