am 7423510c: am da93c60d: Merge "jni: binder ptrdiff_t compile issues"

* commit '7423510c5a6a103a77efc36f064ed716f8810b97':
  jni: binder ptrdiff_t compile issues
diff --git a/core/jni/android_util_Binder.cpp b/core/jni/android_util_Binder.cpp
index 5a053ed9..662af89 100644
--- a/core/jni/android_util_Binder.cpp
+++ b/core/jni/android_util_Binder.cpp
@@ -966,7 +966,7 @@
     jint len = strlen(str);
     int space_needed = 1 + sizeof(len) + len;
     if (end - *pos < space_needed) {
-        ALOGW("not enough space for string. remain=%zd; needed=%d",
+        ALOGW("not enough space for string. remain=%" PRIdPTR "; needed=%d",
              end - *pos, space_needed);
         return false;
     }
@@ -982,7 +982,7 @@
 static bool push_eventlog_int(char** pos, const char* end, jint val) {
     int space_needed = 1 + sizeof(val);
     if (end - *pos < space_needed) {
-        ALOGW("not enough space for int.  remain=%zd; needed=%d",
+        ALOGW("not enough space for int.  remain=%" PRIdPTR "; needed=%d",
              end - *pos, space_needed);
         return false;
     }