summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2021-09-27 11:19:24 +0200
committerThomas Deutschmann <whissi@gentoo.org>2021-10-20 18:22:47 +0200
commitcc6be9c3577168805ec34b2d396e63361012282b (patch)
tree7dc794b08a1a6a786d540516c623cb1eebfb1863 /base/gxclpage.c
parentImport Ghostscript 9.54 (diff)
downloadghostscript-gpl-patches-cc6be9c3577168805ec34b2d396e63361012282b.tar.gz
ghostscript-gpl-patches-cc6be9c3577168805ec34b2d396e63361012282b.tar.bz2
ghostscript-gpl-patches-cc6be9c3577168805ec34b2d396e63361012282b.zip
Import Ghostscript 9.55ghostscript-9.55
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'base/gxclpage.c')
-rw-r--r--base/gxclpage.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/base/gxclpage.c b/base/gxclpage.c
index 18ff9b81..0e358da3 100644
--- a/base/gxclpage.c
+++ b/base/gxclpage.c
@@ -24,6 +24,8 @@
#include "string_.h"
#include <ctype.h> /* for isalpha, etc. */
+extern dev_proc_open_device(clist_open);
+
/* Save the current clist state into a saved page structure,
* and optionally stashes the files into the given save_files
* pointers.
@@ -106,7 +108,7 @@ params_out:
}
}
/* Now re-open the clist device so that we get new files for the next page */
- return (*gs_clist_device_procs.open_device) ((gx_device *) pdev);
+ return clist_open((gx_device *) pdev);
}
/* Save a page. The elements are allocated by this function in non_gc_memory */