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

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

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

* commit 'd661654a':
  Log cause of failure to dlopen
parents da589e3d d661654a
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;
        }