[SOFT386]
authorAleksandar Andrejevic <aandrejevic@reactos.org>
Tue, 17 Sep 2013 21:15:52 +0000 (21:15 +0000)
committerAleksandar Andrejevic <aandrejevic@reactos.org>
Tue, 17 Sep 2013 21:15:52 +0000 (21:15 +0000)
Fix hypothetical bug.

svn path=/branches/ntvdm/; revision=60187

include/reactos/libs/soft386/soft386.h

index 00e68e9..5d31870 100644 (file)
@@ -159,12 +159,15 @@ VOID
 
 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;