fix dumb mistake

This commit is contained in:
Michael Scire 2019-06-29 03:06:20 -07:00
parent 798ff5ccdb
commit 720b3e7c64

View file

@ -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) {