From 30485f1df9a4fc3a6d3095134b012098895f9dc9 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Mon, 22 Apr 2019 13:10:29 -0700 Subject: [PATCH] pm: fix dangling -> --- stratosphere/pm/source/pm_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratosphere/pm/source/pm_main.cpp b/stratosphere/pm/source/pm_main.cpp index 5015a6a91..cab914dd8 100644 --- a/stratosphere/pm/source/pm_main.cpp +++ b/stratosphere/pm/source/pm_main.cpp @@ -180,7 +180,7 @@ int main(int argc, char **argv) s_server_manager.AddWaitable(new ServiceServer("pm:info", 2)); /* Loop forever, servicing our services. */ - server_manager->Process(); + s_server_manager.Process(); return 0; }