Skip to content

Commit f8fd318

Browse files
author
Stefan Ginsberg
committed
- Fix a sneaky breakage of MSVC built kernels. "i386" is a gcc define and we don't define it in the makefiles.
svn path=/trunk/; revision=43724
1 parent ebaa2b8 commit f8fd318

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reactos/ntoskrnl/ex/init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1828,7 +1828,7 @@ Phase1InitializationDiscard(IN PVOID Context)
18281828
InbvUpdateProgressBar(80);
18291829

18301830
/* Initialize VDM support */
1831-
#ifdef i386
1831+
#if defined(_M_IX86)
18321832
KeI386VdmInitialize();
18331833
#endif
18341834

0 commit comments

Comments
 (0)