summaryrefslogtreecommitdiff
path: root/base/gdevm40.c
diff options
context:
space:
mode:
authorChris Liddell <chris.liddell@artifex.com>2016-01-11 14:13:42 +0000
committerChris Liddell <chris.liddell@artifex.com>2016-01-11 14:16:05 +0000
commitd43e2ebb241d5a6ed63a2d0cc2c7ff0909498510 (patch)
tree91cd78615187306b62495f7d1c7a109d9461e0eb /base/gdevm40.c
parent9bf5ab79cf5a0e9d6eee490fe1859c6d6aa28ca5 (diff)
downloadghostpdl-d43e2ebb241d5a6ed63a2d0cc2c7ff0909498510.tar.gz
Remove legacy lower case arch_* macros
Most of the ARCH_* macros had lower case equivalents for "backwards compatibility" - it's been long enough.....
Diffstat (limited to 'base/gdevm40.c')
-rw-r--r--base/gdevm40.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/gdevm40.c b/base/gdevm40.c
index 557eb7639..9e2392c2c 100644
--- a/base/gdevm40.c
+++ b/base/gdevm40.c
@@ -72,7 +72,7 @@ mem_full_alpha_device("image40", 40, 0, mem_open,
*(bits32 *)(ptr) = (wxyz)
/* Load the 5-word 40-bit-color cache. */
/* Free variables: [m]dev, abcd, bcde, cdea, deab, earc. */
-#if arch_is_big_endian
+#if ARCH_IS_BIG_ENDIAN
# define set_color40_cache(color, a, b, c, d, e)\
mdev->color40.abcd = abcd = (color) >> 8, \
mdev->color40.bcde = bcde = (abcd << 8) | (e),\
@@ -409,7 +409,7 @@ mem_true40_copy_color(gx_device * dev,
/* Note that on a big-endian machine, this is the same as the */
/* standard byte-oriented-device. */
-#if !arch_is_big_endian
+#if !ARCH_IS_BIG_ENDIAN
/* Procedures */
declare_mem_procs(mem40_word_copy_mono, mem40_word_copy_color, mem40_word_fill_rectangle);
@@ -482,4 +482,4 @@ mem40_word_copy_color(gx_device * dev,
return 0;
}
-#endif /* !arch_is_big_endian */
+#endif /* !ARCH_IS_BIG_ENDIAN */