Skip to content

Commit d3e6cda

Browse files
author
Steven Moreland
committed
Fix driver open fail ProcessState.cpp
The error message was incorrect. Bugs: me Change-Id: Ib79d3fd0931016b1686df8be5ad295762a9f1243 Test: N/A
1 parent 5a20658 commit d3e6cda

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libs/binder/ProcessState.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ ProcessState::ProcessState(const char* driver)
584584
#ifdef __ANDROID__
585585
LOG_ALWAYS_FATAL_IF(!opened.ok(),
586586
"Binder driver '%s' could not be opened. Error: %s. Terminating.",
587-
error.c_str(), driver);
587+
driver, error.c_str());
588588
#endif
589589

590590
if (opened.ok()) {

0 commit comments

Comments
 (0)