summaryrefslogtreecommitdiff
path: root/cmds-check.c
diff options
context:
space:
mode:
authorRoss Kirk <ross.kirk@gmail.com>2013-10-02 13:28:27 +0100
committerChris Mason <clm@fb.com>2014-01-31 08:22:04 -0800
commit7ff512ce38a266756442ddca328090fe9b6781dc (patch)
tree2834e555523e45037322e4ff300e4562be4d6a43 /cmds-check.c
parent1ecefced86538306d581b05105a93d1268ce0028 (diff)
btrfs-progs: Make btrfs_header_chunk_tree_uuid() return unsigned long
Internally, btrfs_header_chunk_tree_uuid() calculates an unsigned long, but casts it to a pointer, while all callers cast it to unsigned long again. From btrfs commit b308bc2f05a86e728bd035e21a4974acd05f4d1e Signed-off-by: Ross Kirk <ross.kirk@gmail.com> Signed-off-by: David Sterba <dsterba@suse.cz> Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'cmds-check.c')
-rw-r--r--cmds-check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds-check.c b/cmds-check.c
index 43729a88..c15d8d03 100644
--- a/cmds-check.c
+++ b/cmds-check.c
@@ -5697,7 +5697,7 @@ init:
btrfs_header_fsid(), BTRFS_FSID_SIZE);
write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
- (unsigned long)btrfs_header_chunk_tree_uuid(c),
+ btrfs_header_chunk_tree_uuid(c),
BTRFS_UUID_SIZE);
btrfs_mark_buffer_dirty(c);