diff options
author | 2024-10-22 04:16:07 +0000 | |
---|---|---|
committer | 2024-10-22 04:16:07 +0000 | |
commit | b5963dc90bca2da04c357ea3ed0923e22ae6d544 (patch) | |
tree | b8668604b8739309f38fe40335b40826b44ec434 /libs/binder/RpcSession.cpp | |
parent | eb6bc3d377ff6bde3af9368a0a6f9a20b6c88c08 (diff) | |
parent | c16271ca4d678a90cef18af8129a6946903b2115 (diff) |
Merge "libbinder: statusToString for status_t errors" into main am: 8a482fd1ad am: c16271ca4d
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/3316036
Change-Id: I2281aebd6b6a09939941bd60c47cfd28ad0b8b42
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'libs/binder/RpcSession.cpp')
-rw-r--r-- | libs/binder/RpcSession.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/RpcSession.cpp b/libs/binder/RpcSession.cpp index cd21a91d2c..16023ffa82 100644 --- a/libs/binder/RpcSession.cpp +++ b/libs/binder/RpcSession.cpp @@ -164,7 +164,7 @@ status_t RpcSession::setupUnixDomainSocketBootstrapClient(unique_fd bootstrapFd) status_t status = mBootstrapTransport->interruptableWriteFully(mShutdownTrigger.get(), &iov, 1, std::nullopt, &fds); if (status != OK) { - ALOGE("Failed to send fd over bootstrap transport: %s", strerror(-status)); + ALOGE("Failed to send fd over bootstrap transport: %s", statusToString(status).c_str()); return status; } |