Commit cba1faee authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

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: 's avatarAlex Henrie <alexhenrie24@gmail.com> Signed-off-by: 's avatarHuw Davies <huw@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent acabb7d0
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment