From 8ec43f0d69463784c00ddb19c5f3b043e713548e Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Fri, 10 May 2019 03:27:45 -0700 Subject: [PATCH] libstrat: TODO: panic -> std::abort() --- include/stratosphere/servers.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stratosphere/servers.hpp b/include/stratosphere/servers.hpp index 1afcfa49..3ed59653 100644 --- a/include/stratosphere/servers.hpp +++ b/include/stratosphere/servers.hpp @@ -84,7 +84,7 @@ class ManagedPortServer : public IServer { public: ManagedPortServer(const char *service_name, unsigned int max_s) : IServer(max_s) { if (R_FAILED(svcManageNamedPort(&this->port_handle, service_name, this->max_sessions))) { - /* TODO: panic */ + std::abort(); } } }; \ No newline at end of file