From 7e56b21ad68a30fd17755216cd433f887b204941 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Mon, 17 Dec 2018 21:23:10 +0100 Subject: [PATCH] [NTOSKRNL] Fix indentation. No code changes. --- ntoskrnl/io/iomgr/iomdl.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ntoskrnl/io/iomgr/iomdl.c b/ntoskrnl/io/iomgr/iomdl.c index af108c40d4a..8b758d4cdf4 100644 --- a/ntoskrnl/io/iomgr/iomdl.c +++ b/ntoskrnl/io/iomgr/iomdl.c @@ -76,13 +76,13 @@ IoAllocateMdl(IN PVOID VirtualAddress, p = Irp->MdlAddress; while (p->Next) p = p->Next; p->Next = Mdl; - } - else - { + } + else + { /* Otherwise, insert it directly */ Irp->MdlAddress = Mdl; - } - } + } + } /* Return the allocated mdl */ return Mdl;