[PATCH] nsi: Use a whole byte for each nsi_ip_neighbour_dynamic flag

Alex Henrie alexhenrie24 at gmail.com
Thu Dec 9 00:12:04 CST 2021


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

Signed-off-by: Alex Henrie <alexhenrie24 at gmail.com>
---
 include/wine/nsi.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/wine/nsi.h b/include/wine/nsi.h
index 8c3488dc19c..b8e59c7bf54 100644
--- a/include/wine/nsi.h
+++ b/include/wine/nsi.h
@@ -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;
-- 
2.34.1




More information about the wine-devel mailing list