Fix wrong positioned #else

svn path=/branches/ros-amd64-bringup/; revision=45069
This commit is contained in:
Timo Kreuzer 2010-01-14 00:45:11 +00:00
parent 49c5dfc4fe
commit 85441000ae

View file

@ -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;