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

Commit 8c78e2e2 authored by Steven Moreland's avatar Steven Moreland
Browse files

libbinder: log driver name when it doesn't open

Bug: N/A
Test: build and look at logs on device w/ a problem
Change-Id: I9742d958b3f1bfac8f94bdf22c4543079d9e16bd
parent e416f707
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -466,7 +466,7 @@ ProcessState::ProcessState(const char *driver, size_t mmap_size)
        }
    }

    LOG_ALWAYS_FATAL_IF(mDriverFD < 0, "Binder driver could not be opened.  Terminating.");
    LOG_ALWAYS_FATAL_IF(mDriverFD < 0, "Binder driver '%s' could not be opened.  Terminating.", driver);
}

ProcessState::~ProcessState()