summaryrefslogtreecommitdiffstats
path: root/libs/binder/Parcel.cpp
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2014-11-20 23:00:48 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-20 23:00:48 +0000
commitc1ced8bbcd0ab8ddb75513290954e8a56f80040e (patch)
treed0754c77c90060886cab169d0b22aae616fc2587 /libs/binder/Parcel.cpp
parent8d84b6f9f576fe51b2cb4a54042bf95af923e55b (diff)
parentc894c2045f589571c80af0648e7a9dcd7e97b6a8 (diff)
downloadframeworks_native-c1ced8bbcd0ab8ddb75513290954e8a56f80040e.zip
frameworks_native-c1ced8bbcd0ab8ddb75513290954e8a56f80040e.tar.gz
frameworks_native-c1ced8bbcd0ab8ddb75513290954e8a56f80040e.tar.bz2
am c894c204: Merge "C++11 compatibility."
* commit 'c894c2045f589571c80af0648e7a9dcd7e97b6a8': C++11 compatibility.
Diffstat (limited to 'libs/binder/Parcel.cpp')
-rw-r--r--libs/binder/Parcel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp
index e7589b1..c613fe7 100644
--- a/libs/binder/Parcel.cpp
+++ b/libs/binder/Parcel.cpp
@@ -1438,7 +1438,7 @@ void Parcel::ipcSetDataReference(const uint8_t* data, size_t dataSize,
for (size_t i = 0; i < mObjectsSize; i++) {
binder_size_t offset = mObjects[i];
if (offset < minOffset) {
- ALOGE("%s: bad object offset %"PRIu64" < %"PRIu64"\n",
+ ALOGE("%s: bad object offset %" PRIu64 " < %" PRIu64 "\n",
__func__, (uint64_t)offset, (uint64_t)minOffset);
mObjectsSize = 0;
break;