From: Dimitri John Ledkov Date: Sun, 21 Sep 2014 01:01:19 +0000 (+0100) Subject: btrfs-progs: Properly cast to avoid compiler warnings, fixes FTBFS on alpha and ia64 X-Git-Tag: upstream/4.16.1~2703 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5eb89fb10927796128cc2d2561b84f9026d855f0;p=platform%2Fupstream%2Fbtrfs-progs.git btrfs-progs: Properly cast to avoid compiler warnings, fixes FTBFS on alpha and ia64 Bug-Debian: http://bugs.debian.org/539433 Bug-Debian: http://bugs.debian.org/583768 Authors: Luca Bruno Alexander Kurtz Daniel Baumann Signed-off-by: Dimitri John Ledkov Signed-off-by: David Sterba --- diff --git a/btrfs-convert.c b/btrfs-convert.c index f9910dc..2977533 100644 --- a/btrfs-convert.c +++ b/btrfs-convert.c @@ -2441,7 +2441,7 @@ static int do_rollback(const char *devname) ext2_root = btrfs_read_fs_root(root->fs_info, &key); if (!ext2_root || IS_ERR(ext2_root)) { fprintf(stderr, "unable to open subvol %llu\n", - key.objectid); + (unsigned long long)key.objectid); goto fail; }