summaryrefslogtreecommitdiff
path: root/source/pdf/pdf-object.c
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2018-07-06 15:33:51 +0100
committerRobin Watts <robin.watts@artifex.com>2018-07-06 16:10:09 +0100
commit619162b0dfea0b06188ff0729b6d52b11bb49b99 (patch)
treeeca9d26927326164335d43766dff4de03d6a9fe9 /source/pdf/pdf-object.c
parent5088e3f891e50cd01a86d98ffc99669ef38e1f38 (diff)
downloadmupdf-619162b0dfea0b06188ff0729b6d52b11bb49b99.tar.xz
Fix stray consts.
Diffstat (limited to 'source/pdf/pdf-object.c')
-rw-r--r--source/pdf/pdf-object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-object.c b/source/pdf/pdf-object.c
index 7452cefa..d4f504d3 100644
--- a/source/pdf/pdf-object.c
+++ b/source/pdf/pdf-object.c
@@ -2198,7 +2198,7 @@ void pdf_dict_put_text_string(fz_context *ctx, pdf_obj *dict, pdf_obj *key, cons
pdf_dict_put_drop(ctx, dict, key, pdf_new_text_string(ctx, x));
}
-void pdf_dict_put_rect(fz_context *ctx, pdf_obj *dict, pdf_obj *key, const fz_rect x)
+void pdf_dict_put_rect(fz_context *ctx, pdf_obj *dict, pdf_obj *key, fz_rect x)
{
pdf_dict_put_drop(ctx, dict, key, pdf_new_rect(ctx, NULL, x));
}