diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/syscall.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/syscall.cpp b/src/core/hle/syscall.cpp index 84c247ae3..9a1235246 100644 --- a/src/core/hle/syscall.cpp +++ b/src/core/hle/syscall.cpp @@ -89,9 +89,9 @@ Result ConnectToPort(void* out, const char* port_name) { } /// Synchronize to an OS service -Result SendSyncRequest(Handle session) { - DEBUG_LOG(SVC, "SendSyncRequest called session=0x%08X"); - Service::Interface* service = Service::g_manager->FetchFromHandle(session); +Result SendSyncRequest(Handle handle) { + DEBUG_LOG(SVC, "SendSyncRequest called handle=0x%08X"); + Service::Interface* service = Service::g_manager->FetchFromHandle(handle); service->Sync(); return 0; } |