d3dx9_36/tests: Fix an unknown spelling error in the shader tests.

Francois Gouget fgouget at free.fr
Sun Apr 17 13:05:32 CDT 2016


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/d3dx9_36/tests/shader.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/d3dx9_36/tests/shader.c b/dlls/d3dx9_36/tests/shader.c
index 694540c..4a7ae67 100644
--- a/dlls/d3dx9_36/tests/shader.c
+++ b/dlls/d3dx9_36/tests/shader.c
@@ -554,7 +554,7 @@ static void test_get_shader_constant_table_ex(void)
         ok(hr == D3D_OK, "Got result %x, expected 0 (D3D_OK)\n", hr);
         hr = ID3DXConstantTable_GetConstantDesc(constant_table, constant, &constant_desc, NULL);
         ok(hr == D3D_OK, "Got result %x, expected 0 (D3D_OK)\n", hr);
-        hr = ID3DXConstantTable_GetConstantDesc(constant_table, "Constant unknow", &constant_desc, &nb);
+        hr = ID3DXConstantTable_GetConstantDesc(constant_table, "Constant unknown", &constant_desc, &nb);
         ok(hr == D3DERR_INVALIDCALL, "Got result %x, expected %x (D3DERR_INVALIDCALL)\n", hr, D3DERR_INVALIDCALL);
         hr = ID3DXConstantTable_GetConstantDesc(constant_table, "Constant3", &constant_desc, &nb);
         ok(hr == D3D_OK, "Got result %x, expected 0 (D3D_OK)\n", hr);
-- 
2.8.0.rc3




More information about the wine-patches mailing list