diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-10-05 04:50:44 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-10-05 04:50:44 +0200 |
commit | 00905a4e2b959ccc3b79381acbf1d3b8e5319e8e (patch) | |
tree | e880b845138781aa72473a7be579152a5d20e4eb /tree/debug.c | |
parent | 970ce563601547adcaa131229bf296f5c3e2db3c (diff) | |
download | mupdf-00905a4e2b959ccc3b79381acbf1d3b8e5319e8e.tar.xz |
refactor file code. fix file writing.
Diffstat (limited to 'tree/debug.c')
-rw-r--r-- | tree/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tree/debug.c b/tree/debug.c index f5012c60..2e7cfc4f 100644 --- a/tree/debug.c +++ b/tree/debug.c @@ -13,7 +13,7 @@ static void lispmeta(fz_meta *node, int level) fz_node *child; indent(level); printf("(meta "); - fz_fprintcobj(stdout, node->info); + fz_debugobj(node->info); printf("\n"); for (child = node->child; child; child = child->next) lispnode(child, level + 1); |