diff options
| author | 2021-08-26 23:55:26 +0000 | |
|---|---|---|
| committer | 2021-08-26 23:55:26 +0000 | |
| commit | 35e7d618aa826bc0af4ada03ac61c4fd9441c148 (patch) | |
| tree | 2051c643cda56d8b83df23661170a0e96597190a /libs/binder/Parcel.cpp | |
| parent | 0c3fe57f0f078ec7ba16fb5cf7e59babf5952c40 (diff) | |
| parent | c05af3b8d14b58b8c6edf975e18af5ea1f205884 (diff) | |
Merge "[Bugfix] Fix compling error when enable LOG_REFS in Parcel.cpp"
Diffstat (limited to 'libs/binder/Parcel.cpp')
| -rw-r--r-- | libs/binder/Parcel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index 956524ac74..b5454849eb 100644 --- a/libs/binder/Parcel.cpp +++ b/libs/binder/Parcel.cpp @@ -104,7 +104,7 @@ static void acquire_object(const sp<ProcessState>& proc, switch (obj.hdr.type) { case BINDER_TYPE_BINDER: if (obj.binder) { - LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie); + LOG_REFS("Parcel %p acquiring reference on local %llu", who, obj.cookie); reinterpret_cast<IBinder*>(obj.cookie)->incStrong(who); } return; @@ -137,7 +137,7 @@ static void release_object(const sp<ProcessState>& proc, switch (obj.hdr.type) { case BINDER_TYPE_BINDER: if (obj.binder) { - LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie); + LOG_REFS("Parcel %p releasing reference on local %llu", who, obj.cookie); reinterpret_cast<IBinder*>(obj.cookie)->decStrong(who); } return; |