gdi32: Remove unused variable.
authorAndrew Talbot <andrew.talbot@talbotville.com>
Thu, 17 Apr 2008 16:39:36 +0000 (17:39 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Thu, 17 Apr 2008 18:18:29 +0000 (20:18 +0200)
dlls/gdi32/path.c

index a8977ebc67b0932e54b8999acff54fc73efca831..56036f960080b1b806a7b1de906c62077af10516 100644 (file)
@@ -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));