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

Commit aebe5f91 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

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

Change-Id: I37ecbf07fe122fa4998f3cb174e96e49b94f5181
parents ea7af90e 8d144f66
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();
    }
}