diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2016-03-01 15:30:07 +0100 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2016-03-01 21:57:41 +0100 |
commit | ed08eb1f0e4d3fd49181343f5cd3d63f455cbe51 (patch) | |
tree | c8dffaaf86a2dcd732ba884e4580c65a65474af6 /source/tools/pdfposter.c | |
parent | a59f0649377db57cf7874cfd9eb6943a9f9b58d5 (diff) | |
download | mupdf-ed08eb1f0e4d3fd49181343f5cd3d63f455cbe51.tar.xz |
Rename pdf_close_document to pdf_drop_document.
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 8989e2c9..a598fb21 100644 --- a/source/tools/pdfposter.c +++ b/source/tools/pdfposter.c @@ -205,7 +205,7 @@ int pdfposter_main(int argc, char **argv) pdf_save_document(ctx, doc, outfile, &opts); - pdf_close_document(ctx, doc); + pdf_drop_document(ctx, doc); fz_drop_context(ctx); return 0; } |