libuv: Fix anonymous union syntax

This commit is contained in:
Brad King 2016-08-24 11:18:25 -04:00
parent 05dbc204cd
commit b52afa4655
1 changed files with 2 additions and 2 deletions

View File

@ -4145,7 +4145,7 @@ typedef const UNICODE_STRING *PCUNICODE_STRING;
struct { struct {
UCHAR DataBuffer[1]; UCHAR DataBuffer[1];
} GenericReparseBuffer; } GenericReparseBuffer;
} DUMMYUNIONNAME; };
} REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER; } REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER;
#endif #endif
@ -4153,7 +4153,7 @@ typedef struct _IO_STATUS_BLOCK {
union { union {
NTSTATUS Status; NTSTATUS Status;
PVOID Pointer; PVOID Pointer;
} DUMMYUNIONNAME; };
ULONG_PTR Information; ULONG_PTR Information;
} IO_STATUS_BLOCK, *PIO_STATUS_BLOCK; } IO_STATUS_BLOCK, *PIO_STATUS_BLOCK;