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

Commit 8d144f66 authored by Bernie Innocenti's avatar Bernie Innocenti Committed by Gerrit Code Review
Browse files

Merge "Fix missing Result::ok() call in init"

parents ab8a7e35 50dfcb02
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -120,7 +120,7 @@ static void InstallInitNotifier(Epoll* epoll) {
        }
    };

    if (auto result = epoll->RegisterHandler(epoll_fd, drain_socket); !result) {
    if (auto result = epoll->RegisterHandler(epoll_fd, drain_socket); !result.ok()) {
        LOG(FATAL) << result.error();
    }
}