Merge "Correct type of appData field" into pi-dev
This commit is contained in:
commit
6b6b1d2c1a
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ Return<sp<ICas>> MediaCasService::createPlugin(
|
|||
if (mCasLoader.findFactoryForScheme(CA_system_id, &library, &factory)) {
|
||||
CasPlugin *plugin = NULL;
|
||||
sp<CasImpl> casImpl = new CasImpl(listener);
|
||||
if (factory->createPlugin(CA_system_id, (uint64_t)casImpl.get(),
|
||||
if (factory->createPlugin(CA_system_id, casImpl.get(),
|
||||
&CasImpl::OnEvent, &plugin) == OK && plugin != NULL) {
|
||||
casImpl->init(library, plugin);
|
||||
result = casImpl;
|
||||
|
|
Loading…
Reference in a new issue