Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
30a92641
Commit
30a92641
authored
Aug 31, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 31, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi/tests: Fix compilation on systems that don't support nameless unions or structs.
parent
b464f9ca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
iphlpapi.c
dlls/iphlpapi/tests/iphlpapi.c
+4
-4
No files found.
dlls/iphlpapi/tests/iphlpapi.c
View file @
30a92641
...
...
@@ -840,16 +840,16 @@ static void test_GetAdaptersAddresses(void)
while
(
!
ret
&&
winetest_debug
>
1
&&
aa
)
{
trace
(
"Length: %u
\n
"
,
aa
->
Length
);
trace
(
"IfIndex: %u
\n
"
,
aa
->
IfIndex
);
trace
(
"Length: %u
\n
"
,
S
(
U
(
*
aa
)).
Length
);
trace
(
"IfIndex: %u
\n
"
,
S
(
U
(
*
aa
)).
IfIndex
);
trace
(
"Next: %p
\n
"
,
aa
->
Next
);
trace
(
"AdapterName: %s
\n
"
,
aa
->
AdapterName
);
trace
(
"FirstUnicastAddress: %p
\n
"
,
aa
->
FirstUnicastAddress
);
ua
=
aa
->
FirstUnicastAddress
;
while
(
ua
)
{
trace
(
"
\t
Length: %u
\n
"
,
ua
->
Length
);
trace
(
"
\t
Flags: 0x%08x
\n
"
,
ua
->
Flags
);
trace
(
"
\t
Length: %u
\n
"
,
S
(
U
(
*
ua
)).
Length
);
trace
(
"
\t
Flags: 0x%08x
\n
"
,
S
(
U
(
*
ua
)).
Flags
);
trace
(
"
\t
Next: %p
\n
"
,
ua
->
Next
);
trace
(
"
\t
Address.lpSockaddr: %p
\n
"
,
ua
->
Address
.
lpSockaddr
);
trace
(
"
\t
Address.iSockaddrLength: %d
\n
"
,
ua
->
Address
.
iSockaddrLength
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment