mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:57:45 +00:00
LibCore: Make LocalServer::take_over_from_system_server() return ErrorOr
This allows us to use TRY() or MUST() when calling it.
This commit is contained in:
parent
229a45ab14
commit
81047d8f9c
13 changed files with 41 additions and 53 deletions
|
@ -78,8 +78,7 @@ LookupServer::LookupServer()
|
|||
int client_id = ++s_next_client_id;
|
||||
(void)IPC::new_client_connection<ClientConnection>(move(client_socket), client_id);
|
||||
};
|
||||
bool ok = m_local_server->take_over_from_system_server();
|
||||
VERIFY(ok);
|
||||
MUST(m_local_server->take_over_from_system_server());
|
||||
}
|
||||
|
||||
void LookupServer::load_etc_hosts()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue