pdh/tests: Use standard wine_dbgstr_longlong.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
75c0879826
commit
39378faddf
|
@ -854,7 +854,7 @@ static void test_PdhCollectQueryDataEx(void)
|
|||
status = PdhGetFormattedCounterValue( counter, PDH_FMT_LARGE, NULL, &value );
|
||||
ok(status == ERROR_SUCCESS, "PdhGetFormattedCounterValue failed 0x%08x\n", status);
|
||||
|
||||
trace( "uptime %x%08x\n", (DWORD)(U(value).largeValue >> 32), (DWORD)U(value).largeValue );
|
||||
trace( "uptime %s\n", wine_dbgstr_longlong(U(value).largeValue) );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue