From d533d151decd87470ee51a0b16d61ff32c522cd8 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 13 Dec 2008 21:37:59 +0000 Subject: [PATCH] Fix a typo, comment out a DPRINT svn path=/branches/ros-amd64-bringup/; revision=38055 --- reactos/ntoskrnl/ke/amd64/except.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/ntoskrnl/ke/amd64/except.c b/reactos/ntoskrnl/ke/amd64/except.c index 6a626e66b7a..00ec1efc2a9 100644 --- a/reactos/ntoskrnl/ke/amd64/except.c +++ b/reactos/ntoskrnl/ke/amd64/except.c @@ -100,8 +100,8 @@ KiDispatchException(IN PEXCEPTION_RECORD ExceptionRecord, { CONTEXT Context; - DPRINT1("KiDispatchException(%p, %p, %p, %d, %d)\n", - ExceptionRecord, ExceptionFrame, TrapFrame, PreviousMode, FirstChance); +// FrLdrDbgPrint("KiDispatchException(%p, %p, %p, %d, %d)\n", +// ExceptionRecord, ExceptionFrame, TrapFrame, PreviousMode, FirstChance); /* Increase number of Exception Dispatches */ KeGetCurrentPrcb()->KeExceptionDispatchCount++; @@ -125,7 +125,7 @@ KiDispatchException(IN PEXCEPTION_RECORD ExceptionRecord, /* Breakpoint */ case STATUS_BREAKPOINT: - /* Decrement EIP by one */ + /* Decrement RIP by one */ Context.Rip--; break;