diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-11-30 06:41:31 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-11-30 06:41:31 +0100 |
commit | 951f2e23a5ec055c358ea8b6b542d9fd1a4668b0 (patch) | |
tree | 2a4ceae57ee8267d124f9c1ffea219e02849e718 /tree/debug.c | |
parent | 4008b4d986b700830fad5086df3acfc1028a9e3b (diff) | |
download | mupdf-951f2e23a5ec055c358ea8b6b542d9fd1a4668b0.tar.xz |
small bugfixes
Diffstat (limited to 'tree/debug.c')
-rw-r--r-- | tree/debug.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tree/debug.c b/tree/debug.c index e468ef27..b03d4e28 100644 --- a/tree/debug.c +++ b/tree/debug.c @@ -141,8 +141,9 @@ static void lisptext(fz_textnode *node, int level) static void lispimage(fz_imagenode *node, int level) { + fz_image *image = node->image; indent(level); - printf("(image)\n"); + printf("(image %dx%d %d+%d)\n", image->w, image->h, image->n, image->a); } static void lispshade(fz_shadenode *node, int level) |