https://git.reactos.org/?p=reactos.git;a=commitdiff;h=8c7687063979a6a787c67…
commit 8c7687063979a6a787c67f9360aa91eb43af4db6
Author: Joachim Henze <Joachim.Henze(a)reactos.org>
AuthorDate: Sat Sep 30 19:06:30 2023 +0200
Commit: Joachim Henze <Joachim.Henze(a)reactos.org>
CommitDate: Sat Sep 30 19:06:30 2023 +0200
[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.
---
ntoskrnl/mm/section.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/ntoskrnl/mm/section.c b/ntoskrnl/mm/section.c
index fe07ac03df0..35c36d45cfa 100644
--- a/ntoskrnl/mm/section.c
+++ b/ntoskrnl/mm/section.c
@@ -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