diff options
author | Chris Mason <chris.mason@oracle.com> | 2007-02-26 14:26:58 -0500 |
---|---|---|
committer | David Woodhouse <dwmw2@hera.kernel.org> | 2007-02-26 14:26:58 -0500 |
commit | d16302ab0ed26e236e9bde8cd54fd604d7d97297 (patch) | |
tree | 4ffbeead0ab9241bcc39ac778fb57532295dc671 /fs | |
parent | 41903fe666ff8e7b1d47ac7b2f5f9a91c7749498 (diff) |
Btrfs: more 32 bit cleanups
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-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 a9a14223e186..dda08f32c154 100644 --- a/fs/btrfs/print-tree.c +++ b/fs/btrfs/print-tree.c | |||
@@ -45,7 +45,7 @@ void print_tree(struct ctree_root *root, struct tree_buffer *t) | |||
45 | } | 45 | } |
46 | printf("node %Lu level %d total ptrs %d free spc %u\n", t->blocknr, | 46 | printf("node %Lu level %d total ptrs %d free spc %u\n", t->blocknr, |
47 | node_level(c->header.flags), c->header.nritems, | 47 | node_level(c->header.flags), c->header.nritems, |
48 | NODEPTRS_PER_BLOCK - c->header.nritems); | 48 | (u32)NODEPTRS_PER_BLOCK - c->header.nritems); |
49 | fflush(stdout); | 49 | fflush(stdout); |
50 | for (i = 0; i < nr; i++) { | 50 | for (i = 0; i < nr; i++) { |
51 | printf("\tkey %d (%Lu %u %Lu) block %Lu\n", | 51 | printf("\tkey %d (%Lu %u %Lu) block %Lu\n", |