Commit e0212511 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

iphlpapi/tests: Fix compilation on systems that don't support nameless unions.

parent fc7aea37
......@@ -605,7 +605,7 @@ static void testSetTcpEntry(void)
ret = pSetTcpEntry(&row);
todo_wine ok( ret == ERROR_INVALID_PARAMETER, "got %u, expected %u\n", ret, ERROR_INVALID_PARAMETER);
row.dwState = MIB_TCP_STATE_DELETE_TCB;
U(row).dwState = MIB_TCP_STATE_DELETE_TCB;
ret = pSetTcpEntry(&row);
todo_wine ok( ret == ERROR_MR_MID_NOT_FOUND || broken(ret == ERROR_INVALID_PARAMETER),
"got %u, expected %u\n", ret, ERROR_MR_MID_NOT_FOUND);
......
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