nsi: Use a whole byte for each nsi_ip_neighbour_dynamic flag.

Fixes the failure of the test at dlls/nsi/tests/nsi.c:679 on certain
testbot machines.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alex Henrie 2021-12-08 23:12:04 -07:00 committed by Alexandre Julliard
parent acabb7d078
commit cba1faeef7
1 changed files with 2 additions and 2 deletions

View File

@ -226,8 +226,8 @@ struct nsi_ip_neighbour_dynamic
DWORD time;
struct
{
USHORT is_router : 1;
USHORT is_unreachable : 1;
BOOLEAN is_router;
BOOLEAN is_unreachable;
} flags;
USHORT phys_addr_len;
DWORD unk;