From 7cea3b4e8e97a19a920b69f3c37e14c2fc9e3943 Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Wed, 28 Apr 2010 20:19:40 +0000 Subject: Simple fix to remove dict_default_pack from being a global bool. (Make it an enum instead). No changes expected or shown by local cluster testing. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@11145 a1074d23-0009-0410-80fe-cf8c14f379e6 --- gs/psi/idict.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gs/psi/idict.c b/gs/psi/idict.c index 6f225a97d..85605cce1 100644 --- a/gs/psi/idict.c +++ b/gs/psi/idict.c @@ -57,7 +57,9 @@ const uint dict_max_size = max_array_size - 1; /* Define whether dictionaries are packed by default. */ -bool dict_default_pack = true; +enum { + dict_default_pack = true +}; /* * Define the check for whether we can set the 1-element cache. -- cgit v1.2.1