Fix bug in newly introduced service impl

This commit is contained in:
plutoo 2018-01-12 23:31:59 +01:00
parent f70d70f029
commit 251e57fa59

View File

@ -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);
}