summaryrefslogtreecommitdiff
path: root/source/pdf/pdf-write.c
diff options
context:
space:
mode:
authorPhilipp Knechtges <philipp-dev@knechtges.com>2017-08-28 12:24:28 +0200
committerTor Andersson <tor.andersson@artifex.com>2017-08-31 13:44:14 +0200
commit04c0464e035d4a6d681d7fd2faaed625ee513846 (patch)
tree5865ed4274dc80a4c611a5ef65dce876df304fba /source/pdf/pdf-write.c
parent98a0491b614bd4461bec7b286c08a97c2dab705b (diff)
downloadmupdf-04c0464e035d4a6d681d7fd2faaed625ee513846.tar.xz
Adjust PDF header for PDF/A compliance.
Remove superfluous '%' character in the comment with binary bytes.
Diffstat (limited to 'source/pdf/pdf-write.c')
-rw-r--r--source/pdf/pdf-write.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-write.c b/source/pdf/pdf-write.c
index d78442a2..79e7f958 100644
--- a/source/pdf/pdf-write.c
+++ b/source/pdf/pdf-write.c
@@ -2229,7 +2229,7 @@ writeobjects(fz_context *ctx, pdf_document *doc, pdf_write_state *opts, int pass
if (!opts->do_incremental)
{
fz_write_printf(ctx, opts->out, "%%PDF-%d.%d\n", doc->version / 10, doc->version % 10);
- fz_write_string(ctx, opts->out, "%%\316\274\341\277\246\n\n");
+ fz_write_string(ctx, opts->out, "%\xC2\xB5\xC2\xB6\n\n");
}
dowriteobject(ctx, doc, opts, opts->start, pass);