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

Commit e65945e1 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix -Wformat compiler warning" into main am: 226de2d1 am: e79ffe8b

parents 3c53e662 e79ffe8b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -130,9 +130,9 @@ struct DisplayViewport {
                            "isActive=[%d]",
                            ftl::enum_string(type).c_str(), displayId, uniqueId.c_str(),
                            physicalPort ? ftl::to_string(*physicalPort).c_str() : "<none>",
                            orientation, logicalLeft, logicalTop, logicalRight, logicalBottom,
                            physicalLeft, physicalTop, physicalRight, physicalBottom, deviceWidth,
                            deviceHeight, isActive);
                            static_cast<int>(orientation), logicalLeft, logicalTop, logicalRight,
                            logicalBottom, physicalLeft, physicalTop, physicalRight, physicalBottom,
                            deviceWidth, deviceHeight, isActive);
    }
};