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

Commit 45366896 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...

Merge "libbinder: Fix bad stability set log." am: 7a129feb am: db1e4e92 am: 03e349e2 am: 86127b7d
am: 9b8a69cb

Change-Id: I0f4567a79c92ffa4e82fb9a78fa44d49ac58262b
parents 762f55b3 9b8a69cb
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;
    }