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

Commit 3814163b authored by Andreas Gampe's avatar Andreas Gampe Committed by Android Git Automerger
Browse files

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

* commit 'aae42eb2':
  Frameworks/base: Fix format string in Camera
parents e4bdf3c1 aae42eb2
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;
            }