[gs-cvs] rev 9095 - trunk/gs/contrib/opvp
giles at ghostscript.com
giles at ghostscript.com
Wed Sep 17 17:37:40 PDT 2008
Author: giles
Date: 2008-09-17 17:37:38 -0700 (Wed, 17 Sep 2008)
New Revision: 9095
Modified:
trunk/gs/contrib/opvp/gdevopvp.c
Log:
Fix: don't treat char as unsigned in the opvp device. Bug 690079.
Modified: trunk/gs/contrib/opvp/gdevopvp.c
===================================================================
--- trunk/gs/contrib/opvp/gdevopvp.c 2008-09-18 00:12:11 UTC (rev 9094)
+++ trunk/gs/contrib/opvp/gdevopvp.c 2008-09-18 00:37:38 UTC (rev 9095)
@@ -2782,7 +2782,7 @@
int byte_length = raster;
int bit_shift = 0;
int adj_raster = raster;
- char bit_mask = 0xff;
+ unsigned char bit_mask = 0xff;
bool reverse = false;
/* check page-in */
More information about the gs-cvs
mailing list