From 593f4baf1a449fce6cc65c3e18835d0da08cae5a Mon Sep 17 00:00:00 2001 From: Aleksandar Andrejevic Date: Tue, 17 Sep 2013 20:57:35 +0000 Subject: [PATCH] [SOFT386] Fix struct/union mixup. svn path=/branches/ntvdm/; revision=60186 --- lib/soft386/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/soft386/common.h b/lib/soft386/common.h index 9325f1718d3..e32053b04ab 100644 --- a/lib/soft386/common.h +++ b/lib/soft386/common.h @@ -41,9 +41,9 @@ typedef struct _SOFT386_MOD_REG_RM #pragma pack(push, 1) -typedef struct _SOFT386_PAGE_DIR +typedef union _SOFT386_PAGE_DIR { - union + struct { ULONG Present : 1; ULONG Writeable : 1;