wineps.drv: Drop a superfluous TRUE:FALSE conditional expression.

This commit is contained in:
Michael Stefaniuc 2012-08-14 23:04:03 +02:00 committed by Alexandre Julliard
parent 1de4129b0a
commit c1223611af
1 changed files with 1 additions and 1 deletions

View File

@ -740,7 +740,7 @@ DWORD PSDRV_DeviceCapabilities(LPSTR lpszDriver, LPCSTR lpszDevice, LPCSTR lpszP
/* Printer supports colour printing - 1 if yes, 0 if no (Win2k/XP only) */
case DC_COLORDEVICE:
ret = (pi->ppd->ColorDevice != CD_False) ? TRUE : FALSE;
ret = pi->ppd->ColorDevice != CD_False;
break;
/* Identification number of the printer manufacturer for use with ICM (Win9x only) */