diff options
author | Chris Mason <chris.mason@fusionio.com> | 2012-06-15 20:07:17 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@fusionio.com> | 2012-06-15 20:07:17 -0400 |
commit | a8c4a33b98b097e69cd1a10672c43d17ad0ffb25 (patch) | |
tree | 84dc64100b591a26b0be7d8a088d2a6889f2a776 | |
parent | 4325edd0786fdd3909f9550e52a963b2fe54f78b (diff) | |
download | linux-3.10-a8c4a33b98b097e69cd1a10672c43d17ad0ffb25.tar.gz linux-3.10-a8c4a33b98b097e69cd1a10672c43d17ad0ffb25.tar.bz2 linux-3.10-a8c4a33b98b097e69cd1a10672c43d17ad0ffb25.zip |
Btrfs: cast devid to unsigned long long for printk %llu
Avoid warning in 32 bit machines
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
-rw-r--r-- | fs/btrfs/ioctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index 58adbd0356d..0e92e576300 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; } |