Module: wine Branch: master Commit: 50215415f1969b9ef7319a3a685e6daa61f98209 URL: http://source.winehq.org/git/wine.git/?a=commit;h=50215415f1969b9ef7319a3a68...
Author: Francois Gouget fgouget@free.fr Date: Sun Apr 17 20:05:38 2016 +0200
d3dxof/tests: Fix an unknown spelling error in the shader tests.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Matteo Bruni mbruni@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/d3dxof/tests/d3dxof.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/d3dxof/tests/d3dxof.c b/dlls/d3dxof/tests/d3dxof.c index 0573e4a..29a3868 100644 --- a/dlls/d3dxof/tests/d3dxof.c +++ b/dlls/d3dxof/tests/d3dxof.c @@ -536,7 +536,7 @@ static void test_CreateEnumObject(void) ok(*((WORD*)pdata) == 3, "Retrieved data is wrong (%u instead of 3)\n", *((WORD*)pdata));
/* Try to get not existing member (szMember == "unknown") */ - hr = IDirectXFileData_GetData(lpdxfd, "unknow", &size, (void**)&pdata); + hr = IDirectXFileData_GetData(lpdxfd, "unknown", &size, (void**)&pdata); ok(hr == DXFILEERR_BADDATAREFERENCE, "IDirectXFileData_GetData: %x\n", hr);
ref = IDirectXFileEnumObject_Release(lpdxfeo);