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

Commit 50752b73 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Do not -1 for lshal."

parents b79d9f9d 6a25701b
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()) {