Skip to content

Commit 8c6d7e5

Browse files
Treehugger RobotGerrit Code Review
authored andcommitted
Merge "Fix driver open fail ProcessState.cpp" into main
2 parents 650bd6b + d3e6cda commit 8c6d7e5

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)