summaryrefslogtreecommitdiff
path: root/Userland/Services/LaunchServer/Launcher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/LaunchServer/Launcher.cpp')
-rw-r--r--Userland/Services/LaunchServer/Launcher.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Services/LaunchServer/Launcher.cpp b/Userland/Services/LaunchServer/Launcher.cpp
index ad6d025035..5b359179ce 100644
--- a/Userland/Services/LaunchServer/Launcher.cpp
+++ b/Userland/Services/LaunchServer/Launcher.cpp
@@ -85,13 +85,13 @@ String Handler::to_details_str() const
Launcher::Launcher()
{
- ASSERT(s_the == nullptr);
+ VERIFY(s_the == nullptr);
s_the = this;
}
Launcher& Launcher::the()
{
- ASSERT(s_the);
+ VERIFY(s_the);
return *s_the;
}