From 251e57fa590fd27eb264d1e036d8564c68b71a1a Mon Sep 17 00:00:00 2001 From: plutoo Date: Fri, 12 Jan 2018 23:31:59 +0100 Subject: [PATCH] Fix bug in newly introduced service impl --- nx/include/switch/services/sm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/include/switch/services/sm.h b/nx/include/switch/services/sm.h index 6a5c30e4..058afc92 100644 --- a/nx/include/switch/services/sm.h +++ b/nx/include/switch/services/sm.h @@ -17,7 +17,7 @@ static inline bool serviceIsActive(Service* s) { return s->type != ServiceType_Uninitialized; } -static inline bool serviceIpcDispatch(Service* s) { +static inline Result serviceIpcDispatch(Service* s) { return ipcDispatch(s->handle); }