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

Commit 1938a389 authored by Andreas Gampe's avatar Andreas Gampe Committed by Android Git Automerger
Browse files

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

* commit '3814163b':
  Frameworks/base: Fix format string in Camera
parents b95d079c 3814163b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1013,10 +1013,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;
            }