https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7e56b21ad68a30fd17755216cd433f887b204941

commit 7e56b21ad68a30fd17755216cd433f887b204941
Author:     Eric Kohl <[email protected]>
AuthorDate: Mon Dec 17 21:23:10 2018 +0100
Commit:     Eric Kohl <[email protected]>
CommitDate: Wed Dec 19 19:18:20 2018 +0100

    [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 af108c40d4..8b758d4cdf 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;

Reply via email to