summaryrefslogtreecommitdiff
path: root/print-tree.c
diff options
context:
space:
mode:
authorLuca Bruno <lucab@debian.org>2009-06-03 12:04:41 -0400
committerChris Mason <chris.mason@oracle.com>2009-06-03 12:15:40 -0400
commit6fa19b04d9bcf71131ba7969a9f43a63dd1960aa (patch)
tree7379bcb25367652a616bc27317af6846919e217d /print-tree.c
parent99b6d94018a684031b802dd362e2fd21c7be6fe6 (diff)
Fix printf format casting errors
There are still some warnings of the form: format '%llu' expects type 'long long unsigned int' but argument has type 'u64' In conjunction with -Werror, this is causing some build failures. Now they're properly casted, avoiding compiler warnings. Signed-off-by: Luca Bruno <lucab@debian.org> Signed-off-by: Chris Mason <chris.mason@oracle.com>
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 cd21de1d..86033cf3 100644
--- a/print-tree.c
+++ b/print-tree.c
@@ -71,7 +71,7 @@ static int print_inode_ref_item(struct extent_buffer *eb, struct btrfs_item *ite
len = (name_len <= sizeof(namebuf))? name_len: sizeof(namebuf);
read_extent_buffer(eb, namebuf, (unsigned long)(ref + 1), len);
printf("\t\tinode ref index %llu namelen %u name: %.*s\n",
- index, name_len, len, namebuf);
+ (unsigned long long)index, name_len, len, namebuf);
len = sizeof(*ref) + name_len;
ref = (struct btrfs_inode_ref *)((char *)ref + len);
cur += len;