https://git.reactos.org/?p=reactos.git;a=commitdiff;h=d5fa0788d828a704e2bdea...
commit d5fa0788d828a704e2bdeafe983119d4dc5aae7f Author: Jérôme Gardou jerome.gardou@reactos.org AuthorDate: Tue Mar 9 20:23:29 2021 +0100 Commit: Jérôme Gardou zefklop@users.noreply.github.com CommitDate: Tue Mar 16 13:23:21 2021 +0100
[NTOS:MM] Silence a DPRINT which became noisy --- ntoskrnl/mm/ARM3/virtual.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ntoskrnl/mm/ARM3/virtual.c b/ntoskrnl/mm/ARM3/virtual.c index 6234e58d7be..986b345e6c6 100644 --- a/ntoskrnl/mm/ARM3/virtual.c +++ b/ntoskrnl/mm/ARM3/virtual.c @@ -5277,7 +5277,7 @@ NtFreeVirtualMemory(IN HANDLE ProcessHandle, (Vad->u.VadFlags.VadType != VadRotatePhysical)) || (Vad->u.VadFlags.VadType == VadDevicePhysicalMemory)) { - DPRINT1("Attempt to free section memory\n"); + DPRINT("Attempt to free section memory\n"); Status = STATUS_UNABLE_TO_DELETE_SECTION; goto FailPath; }