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

This commit is contained in:
Andreas Gampe
2015-03-17 21:30:49 +00:00
committed by Gerrit Code Review

View File

@@ -436,7 +436,7 @@ public final class GeofenceHardwareImpl {
int monitoringType,
int sourcesUsed) {
if(location == null) {
Log.e(TAG, String.format("Invalid Geofence Transition: location=%p", location));
Log.e(TAG, String.format("Invalid Geofence Transition: location=null"));
return;
}
if(DEBUG) {