diff options
author | Tor Andersson <tor@ghostscript.com> | 2008-08-17 16:29:36 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2008-08-17 16:29:36 +0200 |
commit | 4bded2733a5e2d842df99a6ddaf8457d75f1ba8a (patch) | |
tree | 7e9203f799df7c7546ef7107152782a37cd03853 /apps/pdftool.c | |
parent | 734fe93caf8107983c1099903aac050286598cda (diff) | |
download | mupdf-4bded2733a5e2d842df99a6ddaf8457d75f1ba8a.tar.xz |
Adjust debugobj calls to compensate for fz_debugobj printing a newline.
Diffstat (limited to 'apps/pdftool.c')
-rw-r--r-- | apps/pdftool.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/pdftool.c b/apps/pdftool.c index 15e77ad0..f14629dc 100644 --- a/apps/pdftool.c +++ b/apps/pdftool.c @@ -177,7 +177,7 @@ void showtrailer(void) die(fz_throw("no file specified")); printf("trailer\n"); fz_debugobj(src->trailer); - printf("\n\n"); + printf("\n"); } void showxref(void) @@ -257,7 +257,6 @@ void showobject(int num, int gen) printf("%d %d obj\n", num, gen); fz_debugobj(obj); - printf("\n"); if (pdf_isstream(src, num, gen)) { |