diff mbox

[4/4] Btrfs-progs: fix complie warning in the function filter_by_parent

Message ID 1361800997-2040-1-git-send-email-wangshilong1991@gmail.com (mailing list archive)
State Under Review, archived
Headers show

Commit Message

Wang Shilong Feb. 25, 2013, 2:03 p.m. UTC
From: Wang Shilong <wangsl-fnst@cn.fujitsu.com>

See the below warning info:
warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
---
 btrfs-list.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff mbox

Patch

diff --git a/btrfs-list.c b/btrfs-list.c
index d02d620..2eee4f6 100644
--- a/btrfs-list.c
+++ b/btrfs-list.c
@@ -1173,7 +1173,7 @@  static int filter_full_path(struct root_info *ri, u64 data)
 
 static int filter_by_parent(struct root_info *ri, u64 data)
 {
-	return !uuid_compare(ri->puuid, (u8 *)data);
+	return !uuid_compare(ri->puuid, (u8 *)(unsigned long)data);
 }
 
 static btrfs_list_filter_func all_filter_funcs[] = {