summaryrefslogtreecommitdiff
path: root/devices
diff options
context:
space:
mode:
authorRobin Watts <Robin.Watts@artifex.com>2021-12-16 16:13:14 +0000
committerRobin Watts <Robin.Watts@artifex.com>2021-12-16 16:29:35 +0000
commit3f51c61d4ed23355ba717c55bb94630efa1a0c14 (patch)
treebb4204ee0f6d563075562e2aebe2f08951a6cca7 /devices
parentd86caf51b0aa3f7faa1ad9a8baf1eb2e2ba48ba8 (diff)
downloadghostpdl-3f51c61d4ed23355ba717c55bb94630efa1a0c14.tar.gz
Fix const vs non-const warning.
Diffstat (limited to 'devices')
-rw-r--r--devices/vector/gdevpdfm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/devices/vector/gdevpdfm.c b/devices/vector/gdevpdfm.c
index 05f9b3193..247bf7b46 100644
--- a/devices/vector/gdevpdfm.c
+++ b/devices/vector/gdevpdfm.c
@@ -1933,7 +1933,7 @@ pdfmark_PAGELABEL(gx_device_pdf * pdev, gs_param_string * pairs, uint count,
return 0;
}
-static int is_XMP_Key(gs_param_string *param)
+static int is_XMP_Key(const gs_param_string *param)
{
if (pdf_key_eq(param, "/Title"))
return 1;