André Hentschel : dwrite: Remove unused initializer ( Clang).
Module: wine Branch: master Commit: b4b65d828488188f6669876169410f8ef0494eb7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b4b65d828488188f6669876169... Author: André Hentschel <nerv(a)dawncrow.de> Date: Tue Jul 21 20:31:45 2015 +0200 dwrite: Remove unused initializer (Clang). --- dlls/dwrite/layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dwrite/layout.c b/dlls/dwrite/layout.c index 7e608a6..22c36a3 100644 --- a/dlls/dwrite/layout.c +++ b/dlls/dwrite/layout.c @@ -1423,7 +1423,7 @@ static HRESULT layout_compute_effective_runs(struct dwrite_textlayout *layout) layout->clustermetrics[i].isNewline || /* always wrap on new line */ i == layout->cluster_count - 1) /* end of the text */ { - UINT32 strlength, last_cluster = i, index; + UINT32 strlength, last_cluster, index; FLOAT descent, trailingspacewidth; if (!overflow) {
participants (1)
-
Alexandre Julliard