am 9568772a: Merge "Frameworks/base: Fix format string in Geofence"

* commit '9568772acbf5b36f2edb41f7c5b06d499329add0':
  Frameworks/base: Fix format string in Geofence
This commit is contained in:
Andreas Gampe
2015-03-17 21:42:55 +00:00
committed by Android Git Automerger

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) {