Fix clang-format

This commit is contained in:
mailwl
2018-01-29 16:57:07 +03:00
parent 0d0c9f9ab4
commit df6475ca1e
2 changed files with 3 additions and 5 deletions

View File

@@ -58,7 +58,7 @@ void BSD_U::SendTo(Kernel::HLERequestContext& ctx) {
void BSD_U::Close(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service, "(STUBBED) called");
IPC::ResponseBuilder rb{ ctx, 4 };
IPC::ResponseBuilder rb{ctx, 4};
rb.Push(RESULT_SUCCESS);
rb.Push<u32>(0); // ret

View File

@@ -9,15 +9,13 @@ namespace Service {
namespace Sockets {
void SFDNSRES::GetAddrInfo(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ ctx };
IPC::RequestParser rp{ctx};
LOG_WARNING(Service, "(STUBBED) called");
IPC::ResponseBuilder rb{ ctx, 2 };
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
}
SFDNSRES::SFDNSRES() : ServiceFramework("sfdnsres") {