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;