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

This commit is contained in:
Andreas Gampe
2015-03-17 20:52:20 +00:00
committed by Gerrit Code Review

View File

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