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

Commit bd4cc238 authored by Yifan Hong's avatar Yifan Hong Committed by android-build-merger
Browse files

Merge "Do not -1 for lshal."

am: 50752b73

Change-Id: I8e0f285f5b17b11f32b504dda3a4c31da770653f
parents e81efc50 50752b73
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ int dump() {
                    info.interfaceName,
                    info.instanceName.empty() ? "N/A" : info.instanceName,
                    mode,
                    info.refCount == 0 ? "N/A" : std::to_string(info.refCount - 1));
                    info.refCount < 0 ? "N/A" : std::to_string(info.refCount));
            }
        });
        if (!ret.isOk()) {