diff options
Diffstat (limited to 'src/core/hle/syscall.cpp')
| -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) { | |||
| 89 | } | 89 | } |
| 90 | 90 | ||
| 91 | /// Synchronize to an OS service | 91 | /// Synchronize to an OS service |
| 92 | Result SendSyncRequest(Handle session) { | 92 | Result SendSyncRequest(Handle handle) { |
| 93 | DEBUG_LOG(SVC, "SendSyncRequest called session=0x%08X"); | 93 | DEBUG_LOG(SVC, "SendSyncRequest called handle=0x%08X"); |
| 94 | Service::Interface* service = Service::g_manager->FetchFromHandle(session); | 94 | Service::Interface* service = Service::g_manager->FetchFromHandle(handle); |
| 95 | service->Sync(); | 95 | service->Sync(); |
| 96 | return 0; | 96 | return 0; |
| 97 | } | 97 | } |