Compare commits

...

1 Commits

Author SHA1 Message Date
ameerj
54ae94a183 bsd: Remove unneeded log in EventFd stub 2021-01-31 00:56:22 -05:00

View File

@@ -417,11 +417,10 @@ void BSD::Close(Kernel::HLERequestContext& ctx) {
}
void BSD::EventFd(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service, "(STUBBED) called");
IPC::RequestParser rp{ctx};
const s32 fd = rp.Pop<s32>();
LOG_DEBUG(Service, "called. fd={}", fd);
LOG_WARNING(Service, "(STUBBED) called. fd={}", fd);
BuildErrnoResponse(ctx, Errno::SUCCESS);
}