From patchwork Sat Dec 23 20:52:38 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans van Kranenburg X-Patchwork-Id: 10131671 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id C86DA6019D for ; Sat, 23 Dec 2017 20:59:06 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B347328908 for ; Sat, 23 Dec 2017 20:59:06 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A74CB2899B; Sat, 23 Dec 2017 20:59:06 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id F036928908 for ; Sat, 23 Dec 2017 20:59:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757117AbdLWU7C (ORCPT ); Sat, 23 Dec 2017 15:59:02 -0500 Received: from smtp.dpl.mendix.net ([83.96.177.10]:35589 "EHLO smtp.dpl.mendix.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752828AbdLWU7B (ORCPT ); Sat, 23 Dec 2017 15:59:01 -0500 Received: from mekker.bofh.hq.mendix.net (mekker.bofh.hq.mendix.net [IPv6:2001:828:13c8:10b::21]) by smtp.dpl.mendix.net (Postfix) with ESMTP id 6BF7B2036E for ; Sat, 23 Dec 2017 21:52:38 +0100 (CET) From: Hans van Kranenburg To: linux-btrfs@vger.kernel.org Subject: [PATCH 2/2] btrfs-progs: Fix build of btrfs-calc-size Date: Sat, 23 Dec 2017 21:52:38 +0100 Message-Id: <20171223205238.19678-3-hans@knorrie.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20171223205238.19678-1-hans@knorrie.org> References: <20171223205238.19678-1-hans@knorrie.org> Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Build would fail because it couldn't find the usage function. Signed-off-by: Hans van Kranenburg --- btrfs-calc-size.c | 1 + 1 file changed, 1 insertion(+) diff --git a/btrfs-calc-size.c b/btrfs-calc-size.c index 1ac7c785..d2d68ab2 100644 --- a/btrfs-calc-size.c +++ b/btrfs-calc-size.c @@ -19,6 +19,7 @@ #include "volumes.h" #include "utils.h" #include "commands.h" +#include "help.h" int main(int argc, char **argv) {