diff options
author | Chris Mason <chris.mason@oracle.com> | 2007-02-26 10:55:42 -0500 |
---|---|---|
committer | David Woodhouse <dwmw2@hera.kernel.org> | 2007-02-26 10:55:42 -0500 |
commit | ed0a072aca5ada8c92fece4084a7db374d8998de (patch) | |
tree | 27d74ea84a5ffdcc5ad66abf554b27d3424fdf91 /print-tree.c | |
parent | 46db63cb16d6ebf03a0a31a7f0e23ee2069f4e04 (diff) |
32bit cleanups
Diffstat (limited to 'print-tree.c')
-rw-r--r-- | print-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-tree.c b/print-tree.c index 1d591270..a9a14223 100644 --- a/print-tree.c +++ b/print-tree.c @@ -43,7 +43,7 @@ void print_tree(struct ctree_root *root, struct tree_buffer *t) print_leaf((struct leaf *)c); return; } - printf("node %Lu level %d total ptrs %d free spc %lu\n", t->blocknr, + printf("node %Lu level %d total ptrs %d free spc %u\n", t->blocknr, node_level(c->header.flags), c->header.nritems, NODEPTRS_PER_BLOCK - c->header.nritems); fflush(stdout); |