Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3e6cdac authored by Steven Moreland's avatar Steven Moreland
Browse files

Fix driver open fail ProcessState.cpp

The error message was incorrect.

Bugs: me
Change-Id: Ib79d3fd0931016b1686df8be5ad295762a9f1243
Test: N/A
parent 5a206588
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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()) {