diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2015-12-17 22:38:35 +0100 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2015-12-18 15:32:14 +0100 |
commit | 80949d3d6b6320f5643a450c382f19370922e78f (patch) | |
tree | 7e3a6612d9c2985c3c3c493182d4171d017b4456 /source/tools/pdfposter.c | |
parent | 02d5b2280db2846e4a683944819eb395ab15b8ce (diff) | |
download | mupdf-80949d3d6b6320f5643a450c382f19370922e78f.tar.xz |
Remove fz_save_document and use pdf_save_document directly instead.
In preparation of adding pdf_write_document that writes a document
to a fz_output stream.
Diffstat (limited to 'source/tools/pdfposter.c')
-rw-r--r-- | source/tools/pdfposter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/tools/pdfposter.c b/source/tools/pdfposter.c index 16bbc080..5a5a5948 100644 --- a/source/tools/pdfposter.c +++ b/source/tools/pdfposter.c @@ -157,7 +157,7 @@ int pdfposter_main(int argc, char **argv) char *outfile = "out.pdf"; char *password = ""; int c; - fz_save_options opts = { 0 }; + pdf_write_options opts = { 0 }; pdf_document *doc; fz_context *ctx; |