Author: aandrejevic
Date: Tue Sep 17 20:57:35 2013
New Revision: 60186
URL:
http://svn.reactos.org/svn/reactos?rev=60186&view=rev
Log:
[SOFT386]
Fix struct/union mixup.
Modified:
branches/ntvdm/lib/soft386/common.h
Modified: branches/ntvdm/lib/soft386/common.h
URL:
http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/soft386/common.h?rev=…
==============================================================================
--- branches/ntvdm/lib/soft386/common.h [iso-8859-1] (original)
+++ branches/ntvdm/lib/soft386/common.h [iso-8859-1] Tue Sep 17 20:57:35 2013
@@ -41,9 +41,9 @@
#pragma pack(push, 1)
-typedef struct _SOFT386_PAGE_DIR
+typedef union _SOFT386_PAGE_DIR
{
- union
+ struct
{
ULONG Present : 1;
ULONG Writeable : 1;