summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2021-09-27 11:19:24 +0200
committerThomas Deutschmann <whissi@gentoo.org>2021-10-20 18:22:47 +0200
commitcc6be9c3577168805ec34b2d396e63361012282b (patch)
tree7dc794b08a1a6a786d540516c623cb1eebfb1863 /base/gsbitops.h
parentImport Ghostscript 9.54 (diff)
downloadghostscript-gpl-patches-cc6be9c3577168805ec34b2d396e63361012282b.tar.gz
ghostscript-gpl-patches-cc6be9c3577168805ec34b2d396e63361012282b.tar.bz2
ghostscript-gpl-patches-cc6be9c3577168805ec34b2d396e63361012282b.zip
Import Ghostscript 9.55ghostscript-9.55
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'base/gsbitops.h')
-rw-r--r--base/gsbitops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/gsbitops.h b/base/gsbitops.h
index 4087f19b..127c24aa 100644
--- a/base/gsbitops.h
+++ b/base/gsbitops.h
@@ -257,7 +257,7 @@ static int inline sample_store_next8(uint value, byte **dptr, int *dbit, int dbp
if ( *dbit ^= 4 )
*dbbyte = (byte)(value << 4);
else
- *(*dptr)++ = *dbbyte | ((byte)value);\
+ *(*dptr)++ = *dbbyte | ((byte)value);
break;
case 2:
*(*dptr)++ = (byte)value;