add missing semi column

This commit is contained in:
greggameplayer
2018-08-14 14:37:16 +02:00
committed by GitHub
parent 607b910fd6
commit 01279848ea

View File

@@ -284,7 +284,7 @@ void ISelfController::SetHandlesRequestToDisplay(Kernel::HLERequestContext& ctx)
void ISelfController::SetIdleTimeDetectionExtension(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
IPC::ResponseBuilder rb{ctx, 2};
auto IdleTimeDetectionExtension = rp.Pop<u32>()
auto IdleTimeDetectionExtension = rp.Pop<u32>();
rb.Push(RESULT_SUCCESS);
LOG_WARNING(Service_AM, "(STUBBED) called");