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

Commit e7329bd5 authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am d5255d1d: Merge "If dlopen("libwvm.so") fails, log the reason why."

* commit 'd5255d1d':
  If dlopen("libwvm.so") fails, log the reason why.
parents 9857473f d5255d1d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ static void init_routine()
{
    gVendorLibHandle = dlopen("libwvm.so", RTLD_NOW);
    if (gVendorLibHandle == NULL) {
        ALOGE("Failed to open libwvm.so");
        ALOGE("Failed to open libwvm.so: %s", dlerror());
    }
}