summaryrefslogtreecommitdiff
path: root/print-tree.c
diff options
context:
space:
mode:
authorAnton Blanchard <anton@samba.org>2011-04-07 21:02:04 +1000
committerChris Mason <chris.mason@oracle.com>2011-10-25 09:18:57 -0400
commitfa81a569ac5e4ca426cd8e3fc8a0f181c58a8fae (patch)
treee980b0ee1e50208622f6ca63a37814ff9933397e /print-tree.c
parentfcdc0929c6ea051dad59818210df53fd03eaf4b1 (diff)
btrfs-progs: cast u64 to long long to avoid printf warnings
When building on ppc64 I hit a number of warnings in printf: btrfs-map-logical.c:69: error: format ‘%Lu’ expects type ‘long long unsigned int’, but argument 4 has type ‘u64’ Fix them. Signed-off-by: Anton Blanchard <anton@samba.org> Signed-off-by: Hugo Mills <hugo@carfax.org.uk>
Diffstat (limited to 'print-tree.c')
-rw-r--r--print-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/print-tree.c b/print-tree.c
index ddcade12..59c23c52 100644
--- a/print-tree.c
+++ b/print-tree.c
@@ -496,7 +496,7 @@ void btrfs_print_leaf(struct btrfs_root *root, struct extent_buffer *l)
case BTRFS_DIR_LOG_ITEM_KEY:
dlog = btrfs_item_ptr(l, i, struct btrfs_dir_log_item);
printf("\t\tdir log end %Lu\n",
- btrfs_dir_log_end(l, dlog));
+ (unsigned long long)btrfs_dir_log_end(l, dlog));
break;
case BTRFS_ORPHAN_ITEM_KEY:
printf("\t\torphan item\n");