disable clang-format temp

This commit is contained in:
David Marcec 2019-09-20 10:25:12 +10:00
parent f9259c0383
commit 0740758b25
1 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,7 @@ void NVDRV::IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version) {
if (ctrl.must_delay) {
ctrl.fresh_call = false;
// clang-format off
ctx.SleepClientThread(
"NVServices::DelayedResponse", ctrl.timeout,
[=](Kernel::SharedPtr<Kernel::Thread> thread, Kernel::HLERequestContext& ctx,
@ -78,6 +79,7 @@ void NVDRV::IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version) {
rb.Push(result);
},
nvdrv->GetEventWriteable(ctrl.event_id));
// clang-format on
} else {
ctx.WriteBuffer(output);
if (version == IoctlVersion::Version3) {