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

Commit f6e6213b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "LightService: don't use implicit cast of Return<*>"

parents 3a561b4b 9893740d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@ static void setLight_native(
            return;
        }

        status = static_cast<Status>(ret); // hal status
        status = ret.get(); // hal status
    }

    switch (status) {