From patchwork Sat Oct 27 01:50:02 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ramsay Jones X-Patchwork-Id: 10658015 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 472B75A4 for ; Sat, 27 Oct 2018 01:50:08 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2B6342C87F for ; Sat, 27 Oct 2018 01:50:08 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 1BA062C882; Sat, 27 Oct 2018 01:50:08 +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=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, 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 B49D42C87F for ; Sat, 27 Oct 2018 01:50:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726679AbeJ0K3Y (ORCPT ); Sat, 27 Oct 2018 06:29:24 -0400 Received: from avasout03.plus.net ([84.93.230.244]:55876 "EHLO avasout03.plus.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726048AbeJ0K3Y (ORCPT ); Sat, 27 Oct 2018 06:29:24 -0400 Received: from [10.0.2.15] ([80.189.70.193]) by smtp with ESMTPA id GDjngYeN0fmQQGDjogjEKc; Sat, 27 Oct 2018 02:50:04 +0100 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.3 cv=Acuf4UfG c=1 sm=1 tr=0 a=wSR+GDtF+fsrIzE5OYgxVg==:117 a=wSR+GDtF+fsrIzE5OYgxVg==:17 a=IkcTkHD0fZMA:10 a=EBOSESyhAAAA:8 a=wp1E5GN8qXYykpndVyEA:9 a=QEXdDO2ut3YA:10 a=yJM6EZoI5SlJf8ks9Ge_:22 X-AUTH: ramsayjones@:2500 To: Junio C Hamano Cc: =?utf-8?q?Carlo_Marcelo_Arenas_Bel=C3=B3n?= , Derrick Stolee , GIT Mailing-list From: Ramsay Jones Subject: [PATCH 1/3] fetch-object.h: add missing declaration (hdr-check) Message-ID: <04b4fde9-fbad-9282-726e-0160995b0b28@ramsayjones.plus.com> Date: Sat, 27 Oct 2018 02:50:02 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 MIME-Version: 1.0 Content-Language: en-GB X-CMAE-Envelope: MS4wfOGOcRDJizD5viv89AC7QbdVS4Bgh4FuGNXwpOVk1qDDLcGaP+5rjjBoBchZPNuI/1HrBEd1WObCWmzq/Ce7Or3lY5E13wbUsYvTUvkLhAxzUhWW7nd+ QyIXtplgs10TDV+CCMx1GwE+E4H9SI9vF56m5JivttUULGeak0RMvXzoUpHHK7gp9edS8MUCkmMduw== Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Ramsay Jones --- fetch-object.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fetch-object.h b/fetch-object.h index d2f996d4e8..d6444caa5a 100644 --- a/fetch-object.h +++ b/fetch-object.h @@ -1,6 +1,8 @@ #ifndef FETCH_OBJECT_H #define FETCH_OBJECT_H +struct object_id; + void fetch_objects(const char *remote_name, const struct object_id *oids, int oid_nr);