summaryrefslogtreecommitdiff
path: root/libs/binder/Parcel.cpp
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2021-07-26 22:05:06 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2021-07-26 22:05:06 +0000
commit2cbcc54fd4814c5ba4e01a1f11d2d4f2fffc4911 (patch)
tree9b97a9e5188d195082119a0d3035939d88a93ab5 /libs/binder/Parcel.cpp
parent5f58c863c9512e116a77504ec72671e2c19c6e9b (diff)
parent34d8b2ca5dbf6d313cabb2a50d3b70f413ea7bd3 (diff)
Merge "libbinder: remove per-binder wire protocol version" am: 4068ef232a am: 34d8b2ca5d
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1776767 Change-Id: I5698e61d542017fbbaba5d2ef6259c63ddc6d3d4
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 a2ac96e4f5..e623874862 100644
--- a/libs/binder/Parcel.cpp
+++ b/libs/binder/Parcel.cpp
@@ -173,7 +173,7 @@ static void release_object(const sp<ProcessState>& proc,
status_t Parcel::finishFlattenBinder(const sp<IBinder>& binder)
{
internal::Stability::tryMarkCompilationUnit(binder.get());
- int16_t rep = internal::Stability::getCategory(binder.get()).repr();
+ int16_t rep = internal::Stability::getRepr(binder.get());
return writeInt32(rep);
}