diff options
author | Henry Stiles <henry.stiles@artifex.com> | 2010-05-03 16:57:35 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 2010-05-03 16:57:35 +0000 |
commit | a9f911bafc9a4f0b8432f1502d879c04a8ef1121 (patch) | |
tree | 7e7eb9e1aed5f1549435348c69eadeb134607964 | |
parent | 4885eb2fa363002fdf0980cd189f2a5bb9340f58 (diff) |
Fix compiler warning (return from incompatible pointer type)
introduced with making the font cache part of the library context,
revision 11165.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@11172 a1074d23-0009-0410-80fe-cf8c14f379e6
-rw-r--r-- | gs/psi/isave.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gs/psi/isave.c b/gs/psi/isave.c index 68972df49..593f33473 100644 --- a/gs/psi/isave.c +++ b/gs/psi/isave.c @@ -1400,5 +1400,5 @@ save_set_new_changes(gs_ref_memory_t * mem, bool to_new, bool set_limit) gs_memory_t * gs_save_any_memory(const alloc_save_t *save) { - return(save->space_local); + return((gs_memory_t *)save->space_local); } |