summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/arp/arp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/arp/arp.cpp')
-rw-r--r--src/core/hle/service/arp/arp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/arp/arp.cpp b/src/core/hle/service/arp/arp.cpp
index 358ef2576..e675b0188 100644
--- a/src/core/hle/service/arp/arp.cpp
+++ b/src/core/hle/service/arp/arp.cpp
@@ -59,11 +59,11 @@ public:
private:
void AcquireRegistrar(Kernel::HLERequestContext& ctx) {
+ LOG_DEBUG(Service_ARP, "called");
+
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
rb.Push(RESULT_SUCCESS);
rb.PushIpcInterface<IRegistrar>();
-
- LOG_DEBUG(Service_ARP, "called");
}
};