From 8c7687063979a6a787c67f9360aa91eb43af4db6 Mon Sep 17 00:00:00 2001 From: Joachim Henze Date: Sat, 30 Sep 2023 19:06:30 +0200 Subject: [PATCH] [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