diff options
| -rw-r--r-- | src/core/hle/service/sockets/bsd.cpp | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/sockets/bsd.cpp b/src/core/hle/service/sockets/bsd.cpp index 32648bdd9..6aa1e2511 100644 --- a/src/core/hle/service/sockets/bsd.cpp +++ b/src/core/hle/service/sockets/bsd.cpp @@ -19,10 +19,9 @@ void BSD::RegisterClient(Kernel::HLERequestContext& ctx) {  void BSD::StartMonitoring(Kernel::HLERequestContext& ctx) {      LOG_WARNING(Service, "(STUBBED) called"); -    IPC::ResponseBuilder rb{ctx, 3}; +    IPC::ResponseBuilder rb{ctx, 2};      rb.Push(RESULT_SUCCESS); -    rb.Push<u32>(0); // bsd errno  }  void BSD::Socket(Kernel::HLERequestContext& ctx) {  | 
