Commit 39378fad authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

pdh/tests: Use standard wine_dbgstr_longlong.

parent 75c08798
...@@ -854,7 +854,7 @@ static void test_PdhCollectQueryDataEx(void) ...@@ -854,7 +854,7 @@ static void test_PdhCollectQueryDataEx(void)
status = PdhGetFormattedCounterValue( counter, PDH_FMT_LARGE, NULL, &value ); status = PdhGetFormattedCounterValue( counter, PDH_FMT_LARGE, NULL, &value );
ok(status == ERROR_SUCCESS, "PdhGetFormattedCounterValue failed 0x%08x\n", status); 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) );
} }
} }
......
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