summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'base/gsgstate.c')
-rw-r--r--base/gsgstate.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/base/gsgstate.c b/base/gsgstate.c
index 0f7d182a..76b511c5 100644
--- a/base/gsgstate.c
+++ b/base/gsgstate.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001-2021 Artifex Software, Inc.
+/* Copyright (C) 2001-2022 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
@@ -149,7 +149,7 @@ gs_gstate_initialize(gs_gstate * pgs, gs_memory_t * mem)
pgs->icc_profile_cache = gsicc_profilecache_new(pgs->memory);
if (pgs->icc_profile_cache == NULL)
return_error(gs_error_VMerror);
- pgs->black_text_state = NULL;
+ pgs->black_textvec_state = NULL;
#if ENABLE_CUSTOM_COLOR_CALLBACK
pgs->custom_color_callback = INIT_CUSTOM_COLOR_PTR;
#endif
@@ -179,7 +179,7 @@ gs_gstate_copied(gs_gstate * pgs)
rc_increment(pgs->icc_link_cache);
rc_increment(pgs->icc_profile_cache);
rc_increment(pgs->icc_manager);
- rc_increment(pgs->black_text_state);
+ rc_increment(pgs->black_textvec_state);
}
/* Adjust reference counts before assigning one gs_gstate to another. */
@@ -209,7 +209,7 @@ gs_gstate_pre_assign(gs_gstate *pto, const gs_gstate *pfrom)
RCCOPY(icc_link_cache);
RCCOPY(icc_profile_cache);
RCCOPY(icc_manager);
- RCCOPY(black_text_state);
+ RCCOPY(black_textvec_state);
#undef RCCOPY
}
@@ -250,6 +250,6 @@ gs_gstate_release(gs_gstate * pgs)
RCDECR(icc_link_cache);
RCDECR(icc_profile_cache);
RCDECR(icc_manager);
- RCDECR(black_text_state);
+ RCDECR(black_textvec_state);
#undef RCDECR
}