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

Commit 03e349e2 authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "libbinder: Fix bad stability set log." am: 7a129feb

am: db1e4e92

Change-Id: Iec9a2f0fc974180e1db6a1557603de8aeb834bbe
parents 5346eccf db1e4e92
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ status_t Stability::set(IBinder* binder, int32_t stability, bool log) {
    if (currentStability != Level::UNDECLARED && currentStability != stability) {
        if (log) {
            ALOGE("Interface being set with %s but it is already marked as %s.",
                stabilityString(stability).c_str(), stabilityString(stability).c_str());
                stabilityString(stability).c_str(), stabilityString(currentStability).c_str());
        }
        return BAD_TYPE;
    }