[ros-diffs] [tkreuzer] 45069: Fix wrong positioned #else

tkreuzer at svn.reactos.org tkreuzer at svn.reactos.org
Thu Jan 14 01:45:12 CET 2010


Author: tkreuzer
Date: Thu Jan 14 01:45:11 2010
New Revision: 45069

URL: http://svn.reactos.org/svn/reactos?rev=45069&view=rev
Log:
Fix wrong positioned #else

Modified:
    branches/ros-amd64-bringup/reactos/ntoskrnl/kd/kdmain.c

Modified: branches/ros-amd64-bringup/reactos/ntoskrnl/kd/kdmain.c
URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/ntoskrnl/kd/kdmain.c?rev=45069&r1=45068&r2=45069&view=diff
==============================================================================
--- branches/ros-amd64-bringup/reactos/ntoskrnl/kd/kdmain.c [iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/ntoskrnl/kd/kdmain.c [iso-8859-1] Thu Jan 14 01:45:11 2010
@@ -191,14 +191,13 @@
         /* 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;




More information about the Ros-diffs mailing list