[Kernel] net: name anonymous struct

- fixes GCC compilation error due to
  "member with constructor in anonymous struct"
This commit is contained in:
Joel Linn 2021-05-21 01:26:31 +02:00 committed by Rick Gibbed
parent c0fb300a05
commit 6d548f51b3
1 changed files with 3 additions and 3 deletions

View File

@ -107,9 +107,9 @@ struct XWSAOVERLAPPED {
xe::be<uint32_t> internal_high;
union {
struct {
xe::be<uint32_t> offset;
xe::be<uint32_t> offset_high;
};
xe::be<uint32_t> low;
xe::be<uint32_t> high;
} offset; // must be named to avoid GCC error
xe::be<uint32_t> pointer;
};
xe::be<uint32_t> event_handle;