diff options
Diffstat (limited to 'libs/binder/RpcState.cpp')
-rw-r--r-- | libs/binder/RpcState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/RpcState.cpp b/libs/binder/RpcState.cpp index fd2eff6870..32b4b78675 100644 --- a/libs/binder/RpcState.cpp +++ b/libs/binder/RpcState.cpp @@ -483,7 +483,7 @@ static void cleanup_reply_data(Parcel* p, const uint8_t* data, size_t dataSize, delete[] const_cast<uint8_t*>(data - offsetof(RpcWireReply, data)); (void)dataSize; LOG_ALWAYS_FATAL_IF(objects != nullptr); - LOG_ALWAYS_FATAL_IF(objectsCount, 0); + LOG_ALWAYS_FATAL_IF(objectsCount != 0, "%zu objects remaining", objectsCount); } status_t RpcState::waitForReply(const sp<RpcSession::RpcConnection>& connection, |