- Fix a sneaky breakage of MSVC built kernels. "i386" is a gcc define and we don...
authorStefan Ginsberg <stefanginsberg@gmail.com>
Sat, 24 Oct 2009 20:44:43 +0000 (20:44 +0000)
committerStefan Ginsberg <stefanginsberg@gmail.com>
Sat, 24 Oct 2009 20:44:43 +0000 (20:44 +0000)
svn path=/trunk/; revision=43724

reactos/ntoskrnl/ex/init.c

index 33324d9..d641541 100644 (file)
@@ -1828,7 +1828,7 @@ Phase1InitializationDiscard(IN PVOID Context)
     InbvUpdateProgressBar(80);
 
     /* Initialize VDM support */
     InbvUpdateProgressBar(80);
 
     /* Initialize VDM support */
-#ifdef i386
+#if defined(_M_IX86)
     KeI386VdmInitialize();
 #endif
 
     KeI386VdmInitialize();
 #endif