From a5da286351f39d7d692b275df23ec69a31a9b2eb Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Sat, 29 Jun 2019 03:06:20 -0700 Subject: [PATCH] fix dumb mistake --- stratosphere/pm/source/impl/pm_process_manager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stratosphere/pm/source/impl/pm_process_manager.cpp b/stratosphere/pm/source/impl/pm_process_manager.cpp index 1a7373a55..1958c8946 100644 --- a/stratosphere/pm/source/impl/pm_process_manager.cpp +++ b/stratosphere/pm/source/impl/pm_process_manager.cpp @@ -450,7 +450,8 @@ namespace sts::pm::impl { } Result GetProcessEventHandle(Handle *out) { - return g_process_event->GetHandle(); + *out = g_process_event->GetHandle(); + return ResultSuccess; } Result GetProcessEventInfo(ProcessEventInfo *out) {