Dear BTRFS-Community,

as far as I understand I believe it would make sense to apply that one upstream:

like described, it ...  Fixes FTBFS on alpha and ia64 ...

>cat 02-ftbfs.patch
Authors:
 Luca Bruno <lu...@debian.org>
 Alexander Kurtz <kurtz.a...@googlemail.com>
 Daniel Baumann <daniel.baum...@progress-technologies.net>
Description:
 Patch to properly cast and avoiding compiler warnings. Fixes FTBFS on alpha
 and ia64 (Closes: #539433, #583768).

Index: b/convert.c
===================================================================
--- a/convert.c
+++ b/convert.c
@@ -2512,7 +2512,7 @@ int do_rollback(const char *devname, int
        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;
        }


The file convert.c was renamed recently to btrfs-convert.c.
The fprintf in the do_rollback-function doesn't contain the mentioned fix.

Best Regards
Holger Fischer
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to