diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2021-09-27 11:19:24 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2021-10-20 18:22:47 +0200 |
commit | cc6be9c3577168805ec34b2d396e63361012282b (patch) | |
tree | 7dc794b08a1a6a786d540516c623cb1eebfb1863 /base/gsbitops.h | |
parent | Import Ghostscript 9.54 (diff) | |
download | ghostscript-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.h | 2 |
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; |