summaryrefslogtreecommitdiff
path: root/source/pdf/pdf-device.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-02-22 14:18:05 +0100
committerTor Andersson <tor.andersson@artifex.com>2016-02-22 14:30:36 +0100
commitad8a5680e6d3fd1ad77ae2c1a3d38ebe2042f2cb (patch)
treed7da3d8e161086470a3e3238fe7ac650eb8e44a4 /source/pdf/pdf-device.c
parent35a0cb70629c57eb94cb99fec83f994d3d496a7b (diff)
downloadmupdf-ad8a5680e6d3fd1ad77ae2c1a3d38ebe2042f2cb.tar.xz
Drop const from fz_shade.
Shading objects are immutable and opaque once constructed. Therefore there is no need for the const keyword.
Diffstat (limited to 'source/pdf/pdf-device.c')
-rw-r--r--source/pdf/pdf-device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-device.c b/source/pdf/pdf-device.c
index bc172af6..37bc8499 100644
--- a/source/pdf/pdf-device.c
+++ b/source/pdf/pdf-device.c
@@ -1055,7 +1055,7 @@ pdf_dev_fill_image(fz_context *ctx, fz_device *dev, const fz_image *image, const
}
static void
-pdf_dev_fill_shade(fz_context *ctx, fz_device *dev, const fz_shade *shade, const fz_matrix *ctm, float alpha)
+pdf_dev_fill_shade(fz_context *ctx, fz_device *dev, fz_shade *shade, const fz_matrix *ctm, float alpha)
{
pdf_device *pdev = (pdf_device*)dev;