diff options
Diffstat (limited to 'Userland/Services/NotificationServer/main.cpp')
-rw-r--r-- | Userland/Services/NotificationServer/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/NotificationServer/main.cpp b/Userland/Services/NotificationServer/main.cpp index 3d00b380c3..9bf0e11ab1 100644 --- a/Userland/Services/NotificationServer/main.cpp +++ b/Userland/Services/NotificationServer/main.cpp @@ -44,7 +44,7 @@ int main(int argc, char** argv) auto server = Core::LocalServer::construct(); bool ok = server->take_over_from_system_server(); - ASSERT(ok); + VERIFY(ok); server->on_ready_to_accept = [&] { auto client_socket = server->accept(); if (!client_socket) { |