From: Nikolay Sivov Subject: [PATCH 4/4] usp10: Remove extra parentheses. Message-Id: <20181213235539.8592-4-nsivov@codeweavers.com> Date: Fri, 14 Dec 2018 02:55:39 +0300 In-Reply-To: <20181213235539.8592-1-nsivov@codeweavers.com> References: <20181213235539.8592-1-nsivov@codeweavers.com> Signed-off-by: Nikolay Sivov --- 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 a05de9838f..abc2605919 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; } -- 2.19.2