summaryrefslogtreecommitdiff
path: root/tree/debug.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2004-11-30 06:41:31 +0100
committerTor Andersson <tor@ghostscript.com>2004-11-30 06:41:31 +0100
commit951f2e23a5ec055c358ea8b6b542d9fd1a4668b0 (patch)
tree2a4ceae57ee8267d124f9c1ffea219e02849e718 /tree/debug.c
parent4008b4d986b700830fad5086df3acfc1028a9e3b (diff)
downloadmupdf-951f2e23a5ec055c358ea8b6b542d9fd1a4668b0.tar.xz
small bugfixes
Diffstat (limited to 'tree/debug.c')
-rw-r--r--tree/debug.c3
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)