summaryrefslogtreecommitdiff
path: root/base/gscms.h
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 /base/gscms.h
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 'base/gscms.h')
-rw-r--r--base/gscms.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/gscms.h b/base/gscms.h
index e8e32b4e7..8a3cb66be 100644
--- a/base/gscms.h
+++ b/base/gscms.h
@@ -400,8 +400,8 @@ typedef struct gsicc_profile_entry_s gsicc_profile_entry_t;
struct gsicc_profile_entry_s {
gs_color_space *color_space; /* The color space with the profile */
- gsicc_profile_entry_t *next; /* next CS */
- int64_t key; /* Key based off dictionary location */
+ gsicc_profile_entry_t *next; /* next CS */
+ uint64_t key; /* Key based off dictionary location */
};
/* ProfileList. The size of the list is limited by max_memory_size.