diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2018-10-22 16:21:11 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2018-10-23 18:46:01 +0200 |
commit | fa4cdfca9ec3034dbe54e1cb08c8b97e9ebed46d (patch) | |
tree | 5076a29a2dea14ecdf7d5658766cfc0c36ddb892 | |
parent | 7841391ae40d4c3e7719e4ec290e5c209ee23d17 (diff) | |
download | mupdf-fa4cdfca9ec3034dbe54e1cb08c8b97e9ebed46d.tar.xz |
Fix typo in pdf write device.
-rw-r--r-- | source/pdf/pdf-device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-device.c b/source/pdf/pdf-device.c index 8d079689..31a7a10f 100644 --- a/source/pdf/pdf-device.c +++ b/source/pdf/pdf-device.c @@ -1132,7 +1132,7 @@ fz_device *pdf_new_pdf_device(fz_context *ctx, pdf_document *doc, fz_matrix topc dev->max_gstates = 1; if (!fz_is_identity(topctm)) - fz_append_printf(ctx, buf, "%M cm\n", topctm); + fz_append_printf(ctx, buf, "%M cm\n", &topctm); } fz_catch(ctx) { |