From patchwork Mon May 20 12:59:27 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Holger Fischer X-Patchwork-Id: 2592721 Return-Path: X-Original-To: patchwork-linux-btrfs@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id E359C3FE81 for ; Mon, 20 May 2013 12:59:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756399Ab3ETM7c (ORCPT ); Mon, 20 May 2013 08:59:32 -0400 Received: from mout.web.de ([212.227.15.3]:58272 "EHLO mout.web.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755796Ab3ETM7c (ORCPT ); Mon, 20 May 2013 08:59:32 -0400 Received: from [192.168.226.189] ([77.119.226.254]) by smtp.web.de (mrweb001) with ESMTPSA (Nemesis) id 0LnSKE-1TzGuK0TLK-00h8N0 for ; Mon, 20 May 2013 14:59:30 +0200 Message-ID: <519A1E2F.5050207@web.de> Date: Mon, 20 May 2013 14:59:27 +0200 From: Holger Fischer User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130329 Thunderbird/17.0.5 MIME-Version: 1.0 To: linux-btrfs@vger.kernel.org Subject: btrfs-tools: debian/patches/02-ftbfs.patch X-Provags-ID: V02:K0:E1UOceuhGpXAu3S4+yXkecxksPvPOu/TU8Q1Il2Avxu UomQ5uRt71oVEyVVyoOynMQQYTEXokKyhqOWzFUlmOI6CqXdNr P+HVuTAzFLfzhakzvEPkRSIHbA/rzF/Ec+GAG6ExN5PRDyWmbk UTROokM+JSLP+jDU1RfL+eJgAG3fMLjze59xjS9Tw4f7Kn9Xhj HAEAm0C3C1uhZ6JOjHyhw== Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org 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 Alexander Kurtz Daniel Baumann Description: Patch to properly cast and avoiding compiler warnings. Fixes FTBFS on alpha and ia64 (Closes: #539433, #583768). 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 majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html 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; }