Commit 136d9928 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

dwrite/tests: Use standard wine_dbgstr_longlong.

parent 4e2c0444
......@@ -3946,7 +3946,7 @@ static void test_CreateStreamFromKey(void)
writetime = 0;
hr = IDWriteFontFileStream_GetLastWriteTime(stream, &writetime);
ok(hr == S_OK, "got 0x%08x\n", hr);
ok(writetime != 0, "got %08x%08x\n", (UINT)(writetime >> 32), (UINT)writetime);
ok(writetime != 0, "got %s\n", wine_dbgstr_longlong(writetime));
IDWriteFontFileStream_Release(stream);
IDWriteFontFile_Release(file);
......
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