summaryrefslogtreecommitdiff
path: root/libs/binder/ProcessState.cpp
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2024-08-06 23:42:33 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-08-06 23:42:33 +0000
commit8c6d7e59f34cc7895f6d6ae4bde81fbb4859bef6 (patch)
treec427270fc3bb2d3cbe48de4d6a656c7b1fc82c85 /libs/binder/ProcessState.cpp
parent650bd6b149d9f92a34d95e39dbce2c3817ea2ad3 (diff)
parentd3e6cdac221a3986bb31f1a1aca9055f05528fc3 (diff)
Merge "Fix driver open fail ProcessState.cpp" into main
Diffstat (limited to 'libs/binder/ProcessState.cpp')
-rw-r--r--libs/binder/ProcessState.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/ProcessState.cpp b/libs/binder/ProcessState.cpp
index c2e0937911..c4dfc13b88 100644
--- a/libs/binder/ProcessState.cpp
+++ b/libs/binder/ProcessState.cpp
@@ -584,7 +584,7 @@ ProcessState::ProcessState(const char* driver)
#ifdef __ANDROID__
LOG_ALWAYS_FATAL_IF(!opened.ok(),
"Binder driver '%s' could not be opened. Error: %s. Terminating.",
- error.c_str(), driver);
+ driver, error.c_str());
#endif
if (opened.ok()) {