From 94d0478ee52ac88e2ed0274158346b55d8175951 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 24 May 2006 18:30:34 +0200 Subject: [PATCH] usp10: Fixed a compiler warning. --- dlls/usp10/tests/usp10.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/usp10/tests/usp10.c b/dlls/usp10/tests/usp10.c index 48ded43a9c5..15d4c40cbcd 100644 --- a/dlls/usp10/tests/usp10.c +++ b/dlls/usp10/tests/usp10.c @@ -474,7 +474,7 @@ static void test_ScriptString(void) BOOL fDisabled = FALSE; hr = ScriptStringAnalyse( hdc, pString, cString, cGlyphs, iCharset, dwFlags, iReqWidth, &psControl, &psState, piDx, &pTabdef, - pbInClass, &pssa); + &pbInClass, &pssa); ok(hr == E_INVALIDARG, "ScriptStringAnalyse Stub should return E_INVALIDARG not %08x\n", (unsigned int) hr); hr = ScriptStringOut(pssa, iX, iY, uOptions, &prc, iMinSel, iMaxSel,fDisabled); ok(hr == E_NOTIMPL, "ScriptStringOut Stub should return E_NOTIMPL not %08x\n", (unsigned int) hr);