From: Chris Mason Date: Sat, 16 Jun 2012 00:07:17 +0000 (-0400) Subject: Btrfs: cast devid to unsigned long long for printk %llu X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a8c4a33b98b097e69cd1a10672c43d17ad0ffb25;p=linux-beck.git Btrfs: cast devid to unsigned long long for printk %llu Avoid warning in 32 bit machines Signed-off-by: Chris Mason --- diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index 58adbd0356d6..0e92e5763005 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c @@ -1308,7 +1308,8 @@ static noinline int btrfs_ioctl_resize(struct btrfs_root *root, } if (device->fs_devices && device->fs_devices->seeding) { printk(KERN_INFO "btrfs: resizer unable to apply on " - "seeding device %llu\n", devid); + "seeding device %llu\n", + (unsigned long long)devid); ret = -EINVAL; goto out_free; }