Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a8c4a33b authored by Chris Mason's avatar Chris Mason
Browse files

Btrfs: cast devid to unsigned long long for printk %llu



Avoid warning in 32 bit machines

Signed-off-by: default avatarChris Mason <chris.mason@fusionio.com>
parent 4325edd0
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;
	}