d3d8/tests: Avoid sizeof in traces.

This commit is contained in:
Alexandre Julliard 2006-12-29 12:41:32 +01:00
parent 0e52c42aa6
commit 005efa740b
1 changed files with 1 additions and 1 deletions

View File

@ -420,7 +420,7 @@ static void test_refcount(void)
hr = IDirect3DDevice8_GetStreamSource(pDevice, 0, &pVBuf, &stride);
ok(SUCCEEDED(hr), "GetStreamSource did not succeed with NULL stream!\n");
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 */