Module: wine Branch: master Commit: 679b57f1ceb7752bd3ad2784db9a1a00cfa2741e URL: https://gitlab.winehq.org/wine/wine/-/commit/679b57f1ceb7752bd3ad2784db9a1a0...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Jul 21 11:34:38 2023 +0200
pdh/tests: Use nameless unions/structs.
---
dlls/pdh/tests/pdh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/pdh/tests/pdh.c b/dlls/pdh/tests/pdh.c index e5d6fa8205e..5408e4cc3f3 100644 --- a/dlls/pdh/tests/pdh.c +++ b/dlls/pdh/tests/pdh.c @@ -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) ); } }