diff options
author | Chris Mason <chris.mason@oracle.com> | 2007-02-26 18:55:42 +0300 |
---|---|---|
committer | David Woodhouse <dwmw2@hera.kernel.org> | 2007-02-26 18:55:42 +0300 |
commit | 41903fe666ff8e7b1d47ac7b2f5f9a91c7749498 (patch) | |
tree | 9d82f4d5c41cfac22a507f7e76530ebbff785043 /fs/btrfs/print-tree.c | |
parent | 7cf75962acd27ed0f819df791486e7b803c7109c (diff) | |
download | linux-41903fe666ff8e7b1d47ac7b2f5f9a91c7749498.tar.xz |
Btrfs: 32bit cleanups
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/print-tree.c')
-rw-r--r-- | fs/btrfs/print-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/print-tree.c b/fs/btrfs/print-tree.c index 1d591270f4c4..a9a14223e186 100644 --- a/fs/btrfs/print-tree.c +++ b/fs/btrfs/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); |