Author: aandrejevic Date: Tue Sep 17 21:15:52 2013 New Revision: 60187
URL: http://svn.reactos.org/svn/reactos?rev=60187&view=rev Log: [SOFT386] Fix hypothetical bug.
Modified: branches/ntvdm/include/reactos/libs/soft386/soft386.h
Modified: branches/ntvdm/include/reactos/libs/soft386/soft386.h URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/include/reactos/libs/soft3... ============================================================================== --- branches/ntvdm/include/reactos/libs/soft386/soft386.h [iso-8859-1] (original) +++ branches/ntvdm/include/reactos/libs/soft386/soft386.h [iso-8859-1] Tue Sep 17 21:15:52 2013 @@ -159,12 +159,15 @@
typedef union _SOFT386_REG { - struct + union { - UCHAR LowByte; - UCHAR HighByte; + struct + { + UCHAR LowByte; + UCHAR HighByte; + }; + USHORT LowWord; }; - USHORT LowWord; ULONG Long; } SOFT386_REG, *PSOFT386_REG;