[NTOSKRNL] Fix indentation. No code changes.

This commit is contained in:
Eric Kohl 2018-12-17 21:23:10 +01:00
parent 1a8d9f12d6
commit 7e56b21ad6

View file

@ -76,13 +76,13 @@ IoAllocateMdl(IN PVOID VirtualAddress,
p = Irp->MdlAddress; p = Irp->MdlAddress;
while (p->Next) p = p->Next; while (p->Next) p = p->Next;
p->Next = Mdl; p->Next = Mdl;
} }
else else
{ {
/* Otherwise, insert it directly */ /* Otherwise, insert it directly */
Irp->MdlAddress = Mdl; Irp->MdlAddress = Mdl;
} }
} }
/* Return the allocated mdl */ /* Return the allocated mdl */
return Mdl; return Mdl;