wineps.drv: Fix return value in PSDRV_SetBrush.

oldstable
Gerald Pfeifer 2010-05-01 17:37:37 +02:00 committed by Alexandre Julliard
parent 073743170c
commit 13e16f5f37
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ static BOOL PSDRV_SetBrush(PSDRV_PDEVICE *physDev)
}
physDev->brush.set = TRUE;
return TRUE;
return ret;
}