From eda3a3e37da79fcdf97c472f9bbe7406606b4668 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Fri, 14 Dec 2018 02:55:39 +0300 Subject: [PATCH] usp10: Remove extra parentheses. Signed-off-by: Nikolay Sivov Signed-off-by: Alexandre Julliard --- dlls/usp10/usp10.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/usp10/usp10.c b/dlls/usp10/usp10.c index a05de9838fd..abc26059199 100644 --- a/dlls/usp10/usp10.c +++ b/dlls/usp10/usp10.c @@ -3712,7 +3712,7 @@ HRESULT WINAPI ScriptGetGlyphABCWidth(HDC hdc, SCRIPT_CACHE *psc, WORD glyph, AB if (!get_cache_glyph_widths(psc, glyph, abc)) { if (!hdc) return E_PENDING; - if ((get_cache_pitch_family(psc) & TMPF_TRUETYPE)) + if (get_cache_pitch_family(psc) & TMPF_TRUETYPE) { if (!GetCharABCWidthsI(hdc, 0, 1, &glyph, abc)) return S_FALSE; }