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

Commit 8becd1ee authored by Kean Mariotti's avatar Kean Mariotti Committed by Android (Google) Code Review
Browse files

Merge "Fix output stream creation in layertracegenerator" into main

parents 0b51df88 f0f25888
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ int main(int argc, char** argv) {

    const auto* outputLayersTracePath =
            (argc == 3) ? argv[2] : "/data/misc/wmtrace/layers_trace.winscope";
    auto outStream = std::ofstream{outputLayersTracePath, std::ios::binary | std::ios::app};
    auto outStream = std::ofstream{outputLayersTracePath, std::ios::binary | std::ios::out};

    auto layerTracing = LayerTracing{outStream};