[NTOS:MM] Fix missing \n in unimplemented codepath DPRINT

We can hit that unimplemented code-path-line in NtQuerySection()
when browsing youtube.com with Chromium 49.
This commit is contained in:
Joachim Henze 2023-09-30 19:06:30 +02:00
parent 945ee4b2a4
commit 8c76870639

View file

@ -17,7 +17,6 @@
*
*
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/mm/section.c
* PURPOSE: Implements section objects
*
* PROGRAMMERS: Rex Jolliff
@ -3874,7 +3873,7 @@ NtQuerySection(
}
else
{
DPRINT1("Unimplemented code path!");
DPRINT1("Unimplemented code path\n");
}
_SEH2_TRY