summaryrefslogtreecommitdiff
path: root/psi/zcie.c
diff options
context:
space:
mode:
authorRay Johnston <ray.johnston@artifex.com>2018-11-14 14:19:42 -0800
committerRay Johnston <ray.johnston@artifex.com>2018-11-26 10:43:29 -0800
commite45b35ede042259ff9fbf36fa714e874fc5483db (patch)
tree1207f1b8e7eae020149f2719f6243f85aa23d30a /psi/zcie.c
parent410a192c093c22ca1dbfc1764659faa6a48198a8 (diff)
downloadghostpdl-e45b35ede042259ff9fbf36fa714e874fc5483db.tar.gz
Change hash key for the icc_profile_cache to uint64_t
This was ulong in some places and int64_t in another, but ulong on a Windows build is only 32-bits. Make it consistent (and more bytes on Windows).
Diffstat (limited to 'psi/zcie.c')
-rw-r--r--psi/zcie.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/psi/zcie.c b/psi/zcie.c
index efe2a2f63..8bd2b2707 100644
--- a/psi/zcie.c
+++ b/psi/zcie.c
@@ -435,7 +435,7 @@ cie_defg_param(i_ctx_t *i_ctx_p, const gs_memory_t *mem, const ref * pdref,
return(0);
}
int
-ciedefgspace(i_ctx_t *i_ctx_p, ref *CIEDict, ulong dictkey)
+ciedefgspace(i_ctx_t *i_ctx_p, ref *CIEDict, uint64_t dictkey)
{
os_ptr op = osp;
int edepth = ref_stack_count(&e_stack);
@@ -545,7 +545,7 @@ cie_def_param(i_ctx_t *i_ctx_p, const gs_memory_t *mem, const ref * pdref,
static int cie_def_finish(i_ctx_t *);
int
-ciedefspace(i_ctx_t *i_ctx_p, ref *CIEDict, ulong dictkey)
+ciedefspace(i_ctx_t *i_ctx_p, ref *CIEDict, uint64_t dictkey)
{
os_ptr op = osp;
int edepth = ref_stack_count(&e_stack);
@@ -613,7 +613,7 @@ cie_def_finish(i_ctx_t *i_ctx_p)
static int cie_abc_finish(i_ctx_t *);
int
-cieabcspace(i_ctx_t *i_ctx_p, ref *CIEDict, ulong dictkey)
+cieabcspace(i_ctx_t *i_ctx_p, ref *CIEDict, uint64_t dictkey)
{
os_ptr op = osp;
int edepth = ref_stack_count(&e_stack);
@@ -676,7 +676,7 @@ cie_abc_finish(i_ctx_t *i_ctx_p)
static int cie_a_finish(i_ctx_t *);
int
-cieaspace(i_ctx_t *i_ctx_p, ref *CIEdict, ulong dictkey)
+cieaspace(i_ctx_t *i_ctx_p, ref *CIEdict, uint64_t dictkey)
{
os_ptr op = osp;
int edepth = ref_stack_count(&e_stack);