diff options
author | Michael Vrhel <michael.vrhel@artifex.com> | 2015-09-02 09:04:31 -0700 |
---|---|---|
committer | Michael Vrhel <michael.vrhel@artifex.com> | 2015-09-02 09:04:31 -0700 |
commit | 5fb01f65ad88fcac24444dc4bb57f5ed8fee67b5 (patch) | |
tree | 55525a11519c71d7c5970bbf4cb848fea00101ce | |
parent | 6034e61c32dd57e1bf257290b39b6634f7893230 (diff) | |
download | mupdf-5fb01f65ad88fcac24444dc4bb57f5ed8fee67b5.tar.xz |
Fix broken build due to mudraw not being updated for changes to gproof creation
-rw-r--r-- | source/tools/mudraw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/tools/mudraw.c b/source/tools/mudraw.c index 693f6f90..e15c09b0 100644 --- a/source/tools/mudraw.c +++ b/source/tools/mudraw.c @@ -1096,7 +1096,7 @@ int mudraw_main(int argc, char **argv) fz_printf(ctx, out, "<document name=\"%s\">\n", filename); if (output_format == OUT_GPROOF) { - fz_write_gproof_file(ctx, filename, doc, output, resolution); + fz_write_gproof_file(ctx, filename, doc, output, resolution, "", ""); } else { |