diff options
author | 2021-07-26 21:49:57 +0000 | |
---|---|---|
committer | 2021-07-26 21:49:57 +0000 | |
commit | 34d8b2ca5dbf6d313cabb2a50d3b70f413ea7bd3 (patch) | |
tree | 824bdeb5f15bafa24e46aab6b7b84de2db43fcf9 /libs/binder/Parcel.cpp | |
parent | deaa84a08c767ad10de8e13ecbdd22945354952b (diff) | |
parent | 4068ef232a1dbeeab3895db27ae4f0fd5997e51a (diff) |
Merge "libbinder: remove per-binder wire protocol version" am: 4068ef232a
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1776767
Change-Id: Ic71fcb3d08a2fcc2849e7bb3855e1e43a5a7774d
Diffstat (limited to 'libs/binder/Parcel.cpp')
-rw-r--r-- | libs/binder/Parcel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index ebba375a79..956524ac74 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); } |