Commit 005efa74 authored by Alexandre Julliard's avatar Alexandre Julliard

d3d8/tests: Avoid sizeof in traces.

parent 0e52c42a
...@@ -420,7 +420,7 @@ static void test_refcount(void) ...@@ -420,7 +420,7 @@ static void test_refcount(void)
hr = IDirect3DDevice8_GetStreamSource(pDevice, 0, &pVBuf, &stride); hr = IDirect3DDevice8_GetStreamSource(pDevice, 0, &pVBuf, &stride);
ok(SUCCEEDED(hr), "GetStreamSource did not succeed with NULL stream!\n"); ok(SUCCEEDED(hr), "GetStreamSource did not succeed with NULL stream!\n");
ok(pVBuf==NULL, "pVBuf not NULL (%p)!\n", pVBuf); ok(pVBuf==NULL, "pVBuf not NULL (%p)!\n", pVBuf);
ok(stride==3*sizeof(float), "stride not %u (got %u)!\n", 3*sizeof(float), stride); ok(stride==3*sizeof(float), "stride not 3 floats (got %u)!\n", stride);
} }
/* Shaders */ /* Shaders */
......
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