diff options
author | 2024-08-06 20:01:13 +0000 | |
---|---|---|
committer | 2024-08-06 20:01:13 +0000 | |
commit | d3e6cdac221a3986bb31f1a1aca9055f05528fc3 (patch) | |
tree | 9dcd98f61509977472c231348b404e37c9c6c7fe | |
parent | 5a2065886bd0276780ad744e6fb1e3249dbd6f91 (diff) |
Fix driver open fail ProcessState.cpp
The error message was incorrect.
Bugs: me
Change-Id: Ib79d3fd0931016b1686df8be5ad295762a9f1243
Test: N/A
-rw-r--r-- | libs/binder/ProcessState.cpp | 2 |
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()) { |