summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/sockets/bsd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/sockets/bsd.cpp b/src/core/hle/service/sockets/bsd.cpp
index 9a5b32975..0b306b87a 100644
--- a/src/core/hle/service/sockets/bsd.cpp
+++ b/src/core/hle/service/sockets/bsd.cpp
@@ -421,11 +421,11 @@ void BSD::Close(Kernel::HLERequestContext& ctx) {
421} 421}
422 422
423void BSD::EventFd(Kernel::HLERequestContext& ctx) { 423void BSD::EventFd(Kernel::HLERequestContext& ctx) {
424 LOG_WARNING(Service, "(STUBBED) called");
425 IPC::RequestParser rp{ctx}; 424 IPC::RequestParser rp{ctx};
426 const s32 fd = rp.Pop<s32>(); 425 const u64 initval = rp.Pop<u64>();
426 const u32 flags = rp.Pop<u32>();
427 427
428 LOG_DEBUG(Service, "called. fd={}", fd); 428 LOG_WARNING(Service, "(STUBBED) called. initval={}, flags={}", initval, flags);
429 429
430 BuildErrnoResponse(ctx, Errno::SUCCESS); 430 BuildErrnoResponse(ctx, Errno::SUCCESS);
431} 431}