[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] [patch 3/3] drivers/md/dm-log-userspace-base.c: fix warning
- From: akpm linux-foundation org
- To: agk redhat com
- Cc: dm-devel redhat com, akpm linux-foundation org
- Subject: [dm-devel] [patch 3/3] drivers/md/dm-log-userspace-base.c: fix warning
- Date: Fri, 18 Sep 2009 12:45:09 -0700
From: Andrew Morton <akpm linux-foundation org>
mips:
drivers/md/dm-log-userspace-base.c: In function `userspace_ctr':
drivers/md/dm-log-userspace-base.c:159: warning: cast from pointer to integer of different size
Cc: Neil Brown <neilb suse de>
Cc: Jonathan Brassow <jbrassow redhat com>
Cc: Alasdair G Kergon <agk redhat com>
Signed-off-by: Andrew Morton <akpm linux-foundation org>
---
drivers/md/dm-log-userspace-base.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN drivers/md/dm-log-userspace-base.c~drivers-md-dm-log-userspace-basec-fix-warning drivers/md/dm-log-userspace-base.c
--- a/drivers/md/dm-log-userspace-base.c~drivers-md-dm-log-userspace-basec-fix-warning
+++ a/drivers/md/dm-log-userspace-base.c
@@ -156,7 +156,7 @@ static int userspace_ctr(struct dm_dirty
}
/* The ptr value is sufficient for local unique id */
- lc->luid = (uint64_t)lc;
+ lc->luid = (unsigned long)lc;
lc->ti = ti;
_
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]