Module: wine Branch: master Commit: c94e218ff44cea0eaf353b420c3ef39d37cd75b3 URL: https://gitlab.winehq.org/wine/wine/-/commit/c94e218ff44cea0eaf353b420c3ef39...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Jul 14 09:25:57 2023 +0200
netprofm: Use nameless unions/structs.
---
dlls/netprofm/list.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/dlls/netprofm/list.c b/dlls/netprofm/list.c index 40e03cb94f7..e6819185f22 100644 --- a/dlls/netprofm/list.c +++ b/dlls/netprofm/list.c @@ -18,8 +18,6 @@ */
#define COBJMACROS -#define NONAMELESSUNION -#define NONAMELESSSTRUCT
#include <stdarg.h> #include "windef.h" @@ -1769,7 +1767,7 @@ static void init_networks( struct list_manager *mgr ) struct connection *connection; NET_LUID luid;
- ConvertInterfaceIndexToLuid(aa->u.s.IfIndex, &luid); + ConvertInterfaceIndexToLuid(aa->IfIndex, &luid); ConvertInterfaceLuidToGuid(&luid, &id);
/* assume a one-to-one mapping between networks and connections */