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

* commit 'aae42eb26176482b09f0846e6acf7efa844a0d23':
  Frameworks/base: Fix format string in Camera
This commit is contained in:
Andreas Gampe
2015-03-17 21:05:48 +00:00
committed by Android Git Automerger

View File

@@ -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;
}