Commit d1749b54 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

dwrite: Fixed paste error (Coverity).

parent bf463eae
...@@ -613,7 +613,7 @@ static void test_SetInlineObject(void) ...@@ -613,7 +613,7 @@ static void test_SetInlineObject(void)
hr = IDWriteTextLayout_GetInlineObject(layout, 0, &inlinetest, NULL); hr = IDWriteTextLayout_GetInlineObject(layout, 0, &inlinetest, NULL);
todo_wine { todo_wine {
ok(hr == S_OK, "got 0x%08x\n", hr); 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.startPosition = 0;
range.length = 2; range.length = 2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment