Commit 7b2f7ed3 authored by Alexandre Julliard's avatar Alexandre Julliard

d3dxof/tests: Avoid size_t in a trace.

parent 5b5b199d
...@@ -227,7 +227,7 @@ static void test_dump(void) ...@@ -227,7 +227,7 @@ static void test_dump(void)
goto exit; goto exit;
} }
printf("Load %d (%d) bytes\n", cbSize, strlen(pvData)); printf("Load %d bytes\n", cbSize);
hr = pDirectXFileCreate(&lpDirectXFile); hr = pDirectXFileCreate(&lpDirectXFile);
ok(hr == DXFILE_OK, "DirectXFileCreate: %x\n", hr); ok(hr == DXFILE_OK, "DirectXFileCreate: %x\n", hr);
......
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