1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

pdh/tests: Use nameless unions/structs.

This commit is contained in:
Alexandre Julliard 2023-07-21 11:34:38 +02:00
parent 86721b874b
commit 679b57f1ce

View File

@ -884,7 +884,7 @@ static void test_PdhCollectQueryDataEx(void)
status = PdhGetFormattedCounterValue( counter, PDH_FMT_LARGE, NULL, &value );
ok(status == ERROR_SUCCESS, "PdhGetFormattedCounterValue failed 0x%08lx\n", status);
trace( "uptime %s\n", wine_dbgstr_longlong(U(value).largeValue) );
trace( "uptime %s\n", wine_dbgstr_longlong(value.largeValue) );
}
}