diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2018-10-22 19:39:32 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2018-10-23 18:46:01 +0200 |
commit | 2582f7e21ec079d2d611ad748d5fc77ea3ce3938 (patch) | |
tree | 6745a15f6389de3635d17ffb1495b7de1a4aed25 /source/tools/pdfextract.c | |
parent | 17e5b245e8f0da3287097684f81d470cec8de991 (diff) | |
download | mupdf-2582f7e21ec079d2d611ad748d5fc77ea3ce3938.tar.xz |
Remove extra blank lines.
Diffstat (limited to 'source/tools/pdfextract.c')
-rw-r--r-- | source/tools/pdfextract.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source/tools/pdfextract.c b/source/tools/pdfextract.c index e56abe2b..d7ace87d 100644 --- a/source/tools/pdfextract.c +++ b/source/tools/pdfextract.c @@ -223,19 +223,15 @@ static void extractobject(int num) fz_try(ctx) { ref = pdf_new_indirect(ctx, doc, num, 0); - if (isimage(ref)) saveimage(ref); if (isfontdesc(ref)) savefont(ref); - } fz_always(ctx) pdf_drop_obj(ctx, ref); fz_catch(ctx) - { fz_warn(ctx, "ignoring object %d", num); - } } int pdfextract_main(int argc, char **argv) |