From ac9e977a913d134c5f536eeef60a2de6941f2863 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Tue, 30 Jun 2015 14:48:48 -0700 Subject: Fix a clang warning about a dangling else. BUG=none R=brucedawson@chromium.org Review URL: https://codereview.chromium.org/1223433002. --- core/src/fxge/win32/fx_win32_gdipext.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core/src/fxge') diff --git a/core/src/fxge/win32/fx_win32_gdipext.cpp b/core/src/fxge/win32/fx_win32_gdipext.cpp index baa5da35ec..072f4082d6 100644 --- a/core/src/fxge/win32/fx_win32_gdipext.cpp +++ b/core/src/fxge/win32/fx_win32_gdipext.cpp @@ -807,12 +807,13 @@ static GpPen* _GdipCreatePen(const CFX_GraphStateData* pGraphState, const CFX_Af } CallFunc(GdipSetPenDashArray)(pPen, pDashArray, nCount); FX_FLOAT phase = pGraphState->m_DashPhase; - if (bDashExtend) + if (bDashExtend) { if (phase < 0.5f) { phase = 0; } else { phase -= 0.5f; } + } CallFunc(GdipSetPenDashOffset)(pPen, phase); FX_Free(pDashArray); pDashArray = NULL; -- cgit v1.2.3