summaryrefslogtreecommitdiff
path: root/libs/binder/Parcel.cpp
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2021-07-26 21:34:05 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2021-07-26 21:34:05 +0000
commit4068ef232a1dbeeab3895db27ae4f0fd5997e51a (patch)
treeabf2ab4777e8f9f50a919387f0c2827741273e16 /libs/binder/Parcel.cpp
parent4b02e9cf077074ea38ce7352dfb5af779bb361a2 (diff)
parent16a4106cb7bc18d473a428d9f19c7561a21e3f06 (diff)
Merge "libbinder: remove per-binder wire protocol version"
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 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);
}