dwrite: Use correct variable (Coverity).

This commit is contained in:
Marcus Meissner 2014-09-21 17:00:16 +02:00 committed by Alexandre Julliard
parent 2a257f0684
commit 23aaef96a2
1 changed files with 1 additions and 1 deletions

View File

@ -957,7 +957,7 @@ static void test_FontLoader(void)
ok(face == DWRITE_FONT_FACE_TYPE_UNKNOWN, "got %i\n", face);
ok(count == 0, "got %i\n", count);
hr = IDWriteFactory_CreateFontFace(factory, type, 1, &ffile, 0, 0, &fface);
hr = IDWriteFactory_CreateFontFace(factory, DWRITE_FONT_FACE_TYPE_CFF, 1, &ffile, 0, 0, &fface);
ok(hr == 0x8faecafe, "got 0x%08x\n", hr);
IDWriteFontFile_Release(ffile);