Commit c1223611 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent 1de4129b
......@@ -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) */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment