ddraw/tests: Fix a typo in ok() message (v2)

Andrey Gusev andrey.goosev at gmail.com
Mon May 9 10:13:47 CDT 2016


-------------- next part --------------
From bcdef906dc9b6385aa0efadf616197dd4d61b848 Mon Sep 17 00:00:00 2001
Message-Id: <bcdef906dc9b6385aa0efadf616197dd4d61b848.1462806626.git.andrey.goosev at gmail.com>
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Mon, 9 May 2016 18:08:47 +0300
Subject: [PATCH] ddraw/tests: Fix a typo in ok() message

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/ddraw/tests/d3d.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ddraw/tests/d3d.c b/dlls/ddraw/tests/d3d.c
index d877020..3ff7553 100644
--- a/dlls/ddraw/tests/d3d.c
+++ b/dlls/ddraw/tests/d3d.c
@@ -1155,7 +1155,7 @@ static void Direct3D1Test(void)
     /* Interface consistency check. */
     hr = IDirect3DDevice_GetDirect3D(Direct3DDevice1, &Direct3D_alt);
     ok(hr == D3D_OK, "IDirect3DDevice_GetDirect3D failed: %08x\n", hr);
-    ok(Direct3D_alt == Direct3D1, "Direct3D1 struct pointer missmatch: %p != %p\n", Direct3D_alt, Direct3D1);
+    ok(Direct3D_alt == Direct3D1, "Direct3D1 struct pointer mismatch: %p != %p.\n", Direct3D_alt, Direct3D1);
     IDirect3D_Release(Direct3D_alt);
 
     memset(&desc, 0, sizeof(desc));
-- 
2.5.5



More information about the wine-patches mailing list