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

Commit 67d65285 authored by David Duarte's avatar David Duarte
Browse files

Add missing argument to ALOGE

The argument was missed in https://r.android.com/3015177

Bug: 315250603
Change-Id: I78f2da409651871ed76639b3cfaa13e501e1213f
parent ab2daeca
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -790,7 +790,8 @@ Status ServiceManager::registerClientCallback(const std::string& name, const sp<

    if (OK !=
        IInterface::asBinder(cb)->linkToDeath(sp<ServiceManager>::fromExisting(this))) {
        ALOGE("%s Could not linkToDeath when adding client callback for %s", name.c_str());
        ALOGE("%s Could not linkToDeath when adding client callback for %s",
              ctx.toDebugString().c_str(), name.c_str());
        return Status::fromExceptionCode(Status::EX_ILLEGAL_STATE, "Couldn't linkToDeath.");
    }