Module: wine Branch: master Commit: c3c219c9059ee57a910856db0a413e93fffd96f3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c3c219c9059ee57a910856db0a...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Thu Apr 17 17:39:36 2008 +0100
gdi32: Remove unused variable.
---
dlls/gdi32/path.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/dlls/gdi32/path.c b/dlls/gdi32/path.c index a8977eb..56036f9 100644 --- a/dlls/gdi32/path.c +++ b/dlls/gdi32/path.c @@ -1851,7 +1851,7 @@ static BOOL PATH_StrokePath(DC *dc, GdiPath *pPath)
static BOOL PATH_WidenPath(DC *dc) { - INT i, j, numStrokes, nLinePts, penWidth, penWidthIn, penWidthOut, size, penStyle; + INT i, j, numStrokes, penWidth, penWidthIn, penWidthOut, size, penStyle; BOOL ret = FALSE; GdiPath *pPath, *pNewPath, **pStrokes, *pUpPath, *pDownPath; EXTLOGPEN *elp; @@ -1907,7 +1907,6 @@ static BOOL PATH_WidenPath(DC *dc) penWidthOut++;
numStrokes = 0; - nLinePts = 0;
pStrokes = HeapAlloc(GetProcessHeap(), 0, numStrokes * sizeof(GdiPath*)); pStrokes[0] = HeapAlloc(GetProcessHeap(), 0, sizeof(GdiPath));