From eb02ff5d5f16ea69541ace7210414538d6d8a0be Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 14 Jun 2018 23:32:01 -0600 Subject: [PATCH] Make PM Compile. Note: Currently broken. --- include/stratosphere/ievent.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stratosphere/ievent.hpp b/include/stratosphere/ievent.hpp index 5d30ce1e..4d5b1582 100644 --- a/include/stratosphere/ievent.hpp +++ b/include/stratosphere/ievent.hpp @@ -46,7 +46,7 @@ class IEvent : public IWaitable { return this->callback(this->arg, this->handles.data(), this->handles.size(), timeout); } - static Result PanicCallback(Handle *handles, size_t num_handles, u64 timeout) { + static Result PanicCallback(void *arg, Handle *handles, size_t num_handles, u64 timeout) { /* TODO: Panic. */ return 0xCAFE; }