[PATCH] dwrite: fixed paste error (Coverity)

Marcus Meissner marcus at jet.franken.de
Mon Aug 11 02:00:31 CDT 2014


1230696 Copy-paste error
---
 dlls/dwrite/tests/layout.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/dwrite/tests/layout.c b/dlls/dwrite/tests/layout.c
index f4cd903..dc5f477 100644
--- a/dlls/dwrite/tests/layout.c
+++ b/dlls/dwrite/tests/layout.c
@@ -613,7 +613,7 @@ static void test_SetInlineObject(void)
     hr = IDWriteTextLayout_GetInlineObject(layout, 0, &inlinetest, NULL);
 todo_wine {
     ok(hr == S_OK, "got 0x%08x\n", hr);
-    ok(inlinetest == NULL, "got %p\n", inlineobj);
+    ok(inlinetest == NULL, "got %p\n", inlinetest);
 }
     range.startPosition = 0;
     range.length = 2;
-- 
1.8.4.5




More information about the wine-patches mailing list