From 85441000ae6e7befc175842d52610366bdb663f7 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Thu, 14 Jan 2010 00:45:11 +0000 Subject: [PATCH] Fix wrong positioned #else svn path=/branches/ros-amd64-bringup/; revision=45069 --- reactos/ntoskrnl/kd/kdmain.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/kd/kdmain.c b/reactos/ntoskrnl/kd/kdmain.c index 07e06e8a8b4..95402c32072 100644 --- a/reactos/ntoskrnl/kd/kdmain.c +++ b/reactos/ntoskrnl/kd/kdmain.c @@ -191,14 +191,13 @@ KdpEnterDebuggerException(IN PKTRAP_FRAME TrapFrame, /* Bump EIP to the instruction following the int 2C and return */ Context->Eip += 2; #elif _AMD64_ -#else /* Warn about it */ DbgPrint("\n!!! Assertion Failure at Address 0x%p !!!\n\n", (PVOID)Context->Rip); /* Bump RIP to the instruction following the int 2C and return */ Context->Rip += 2; - +#else #error Unknown Architecture #endif return TRUE;