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

Commit 8c3b6ac2 authored by John Reck's avatar John Reck
Browse files

Fix layer Z dump

%u -> %d to match that Z is an int32_t

Test: manual

Change-Id: Ia7f1f3575953e63eeb77a2f776142007f23ad1a4
parent 4908fe56
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2501,7 +2501,7 @@ void Layer::miniDump(String8& result, int32_t hwcId) const {

    const Layer::State& layerState(getDrawingState());
    const HWCInfo& hwcInfo = mHwcLayers.at(hwcId);
    result.appendFormat("  %10u | ", layerState.z);
    result.appendFormat("  %10d | ", layerState.z);
    result.appendFormat("%10s | ",
            to_string(getCompositionType(hwcId)).c_str());
    const Rect& frame = hwcInfo.displayFrame;