renamed "session" to "handle"
This commit is contained in:
parent
112904b832
commit
088a2de9a6
1 changed files with 3 additions and 3 deletions
|
@ -89,9 +89,9 @@ Result ConnectToPort(void* out, const char* port_name) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Synchronize to an OS service
|
/// Synchronize to an OS service
|
||||||
Result SendSyncRequest(Handle session) {
|
Result SendSyncRequest(Handle handle) {
|
||||||
DEBUG_LOG(SVC, "SendSyncRequest called session=0x%08X");
|
DEBUG_LOG(SVC, "SendSyncRequest called handle=0x%08X");
|
||||||
Service::Interface* service = Service::g_manager->FetchFromHandle(session);
|
Service::Interface* service = Service::g_manager->FetchFromHandle(handle);
|
||||||
service->Sync();
|
service->Sync();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue