Module: wine Branch: master Commit: ee77f521634ca161a142ff5dc2e1221b42e43adc URL: http://source.winehq.org/git/wine.git/?a=commit;h=ee77f521634ca161a142ff5dc2...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Thu Sep 29 22:16:14 2011 +0100
gdi32: Mark a fall-through in a switch statement.
---
dlls/gdi32/path.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/gdi32/path.c b/dlls/gdi32/path.c index 3c8b6ea..277d167 100644 --- a/dlls/gdi32/path.c +++ b/dlls/gdi32/path.c @@ -1826,6 +1826,7 @@ static BOOL PATH_WidenPath(DC *dc) pStrokes[numStrokes - 1] = HeapAlloc(GetProcessHeap(), 0, sizeof(GdiPath)); PATH_InitGdiPath(pStrokes[numStrokes - 1]); pStrokes[numStrokes - 1]->state = PATH_Open; + /* fall through */ case PT_LINETO: case (PT_LINETO | PT_CLOSEFIGURE): point.x = pPath->pPoints[i].x;