aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/bcache/bset.c
diff options
context:
space:
mode:
authorKent Overstreet <kmo@daterainc.com>2014-02-17 13:44:06 -0800
committerKent Overstreet <kmo@daterainc.com>2014-02-18 08:55:05 -0800
commit85cbe1f88cb189322e3e4ef98816c19ab12161ea (patch)
tree72ba20895605da7d81efb8bf851990c10e0b73c3 /drivers/md/bcache/bset.c
parentLinux 3.14-rc3 (diff)
downloadlinux-dev-85cbe1f88cb189322e3e4ef98816c19ab12161ea.tar.xz
linux-dev-85cbe1f88cb189322e3e4ef98816c19ab12161ea.zip
bcache: Fix another compiler warning on m68k
Use a bigger hammer this time Signed-off-by: Kent Overstreet <kmo@daterainc.com> Cc: linux-stable <stable@vger.kernel.org>
Diffstat (limited to 'drivers/md/bcache/bset.c')
-rw-r--r--drivers/md/bcache/bset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/md/bcache/bset.c b/drivers/md/bcache/bset.c
index 3f74b4b0747b..545416415305 100644
--- a/drivers/md/bcache/bset.c
+++ b/drivers/md/bcache/bset.c
@@ -23,8 +23,8 @@ void bch_dump_bset(struct btree_keys *b, struct bset *i, unsigned set)
for (k = i->start; k < bset_bkey_last(i); k = next) {
next = bkey_next(k);
- printk(KERN_ERR "block %u key %li/%u: ", set,
- (uint64_t *) k - i->d, i->keys);
+ printk(KERN_ERR "block %u key %u/%u: ", set,
+ (unsigned) ((u64 *) k - i->d), i->keys);
if (b->ops->key_dump)
b->ops->key_dump(b, k);