diff options
author | Philipp Knechtges <philipp-dev@knechtges.com> | 2017-08-28 12:24:28 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2017-08-31 13:44:14 +0200 |
commit | 04c0464e035d4a6d681d7fd2faaed625ee513846 (patch) | |
tree | 5865ed4274dc80a4c611a5ef65dce876df304fba /source | |
parent | 98a0491b614bd4461bec7b286c08a97c2dab705b (diff) | |
download | mupdf-04c0464e035d4a6d681d7fd2faaed625ee513846.tar.xz |
Adjust PDF header for PDF/A compliance.
Remove superfluous '%' character in the comment with binary bytes.
Diffstat (limited to 'source')
-rw-r--r-- | source/pdf/pdf-write.c | 2 |
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); |