Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3f14f569 authored by Marco Nelissen's avatar Marco Nelissen Committed by Android Git Automerger
Browse files

am de2faabb: am d661654a: am 0958e926: Merge "Log cause of failure to dlopen"

* commit 'de2faabb':
  Log cause of failure to dlopen
parents fdbafc07 de2faabb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ OMX_ERRORTYPE SoftOMXPlugin::makeComponentInstance(
        void *libHandle = dlopen(libName.c_str(), RTLD_NOW);

        if (libHandle == NULL) {
            ALOGE("unable to dlopen %s", libName.c_str());
            ALOGE("unable to dlopen %s: %s", libName.c_str(), dlerror());

            return OMX_ErrorComponentNotFound;
        }