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

Commit aae42eb2 authored by Andreas Gampe's avatar Andreas Gampe Committed by Gerrit Code Review
Browse files

Merge "Frameworks/base: Fix format string in Camera"

parents be549f9b 02ffb2aa
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -774,10 +774,10 @@ public final class CameraManager {
                if (DEBUG) {
                    Log.v(TAG,
                            String.format(
                                "Device status was previously available (%d), " +
                                " and is now again available (%d)" +
                                "Device status was previously available (%b), " +
                                " and is now again available (%b)" +
                                "so no new client visible update will be sent",
                                isAvailable(status), isAvailable(status)));
                                isAvailable(oldStatus), isAvailable(status)));
                }
                return;
            }