summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2015-04-09 20:19:10 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-04-09 20:19:10 +0000
commit9db4d29fe4b113a63f0c1701a067d044c8c596f6 (patch)
tree2ddb7db15edbf4e78ae71f74284e92a99fdd6249 /media
parente7043b5ec21dbc0e836889840cf3c98faa777e0b (diff)
parent3f14f5692ab396bfd0193a280311a600abeabeaa (diff)
downloadframeworks_av-9db4d29fe4b113a63f0c1701a067d044c8c596f6.zip
frameworks_av-9db4d29fe4b113a63f0c1701a067d044c8c596f6.tar.gz
frameworks_av-9db4d29fe4b113a63f0c1701a067d044c8c596f6.tar.bz2
am 3f14f569: am de2faabb: am d661654a: am 0958e926: Merge "Log cause of failure to dlopen"
* commit '3f14f5692ab396bfd0193a280311a600abeabeaa': Log cause of failure to dlopen
Diffstat (limited to 'media')
-rw-r--r--media/libstagefright/omx/SoftOMXPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/omx/SoftOMXPlugin.cpp b/media/libstagefright/omx/SoftOMXPlugin.cpp
index 9b6958a..3ab241a 100644
--- a/media/libstagefright/omx/SoftOMXPlugin.cpp
+++ b/media/libstagefright/omx/SoftOMXPlugin.cpp
@@ -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;
}