fix posix build error in wifi.h. fixes #191

This commit is contained in:
zeromus 2018-09-15 16:59:18 -04:00
parent 0c6f18d5eb
commit 1a34cfae5f
1 changed files with 4 additions and 4 deletions

View File

@ -2266,13 +2266,13 @@ typedef union
{
#ifndef MSB_FIRST
u16 Status:4;
u16 :4;
u16 empty:4;
u16 :8;
u16 empty2:8;
#else
u16 :8;
u16 empty2:8;
u16 :4;
u16 empty:4;
u16 Status:4;
#endif
};