gdi32: Remove variable retb which is not really used from test_closefigure.

This commit is contained in:
Gerald Pfeifer 2010-04-24 16:46:48 +02:00 committed by Alexandre Julliard
parent d30629ff74
commit 6cad49da4b
1 changed files with 1 additions and 2 deletions

View File

@ -393,7 +393,6 @@ done:
}
static void test_closefigure(void) {
BOOL retb;
int nSize, nSizeWitness;
HDC hdc = GetDC(0);
@ -402,7 +401,7 @@ static void test_closefigure(void) {
LineTo(hdc, 95, 0);
LineTo(hdc, 0, 95);
retb = CloseFigure(hdc);
CloseFigure(hdc);
EndPath(hdc);
nSize = GetPath(hdc, NULL, NULL, 0);