From patchwork Mon Apr 27 03:38:30 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geoff Levand X-Patchwork-Id: 1277296 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 499Vqq5KBCz9sRY for ; Mon, 27 Apr 2020 13:38:47 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=cqC+qiwJ; dkim-atps=neutral Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 499Vqq3shjzDqKj for ; Mon, 27 Apr 2020 13:38:47 +1000 (AEST) X-Original-To: petitboot@lists.ozlabs.org Delivered-To: petitboot@lists.ozlabs.org Authentication-Results: lists.ozlabs.org; spf=none (no SPF record) smtp.mailfrom=infradead.org (client-ip=2001:8b0:10b:1231::1; helo=merlin.infradead.org; envelope-from=geoff@infradead.org; receiver=) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=cqC+qiwJ; dkim-atps=neutral Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 499Vqf5cqVzDqV7 for ; Mon, 27 Apr 2020 13:38:37 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Date:Cc:To:Subject:From:References: In-Reply-To:Message-Id:Sender:Reply-To:MIME-Version:Content-Type: Content-Transfer-Encoding:Content-ID:Content-Description; bh=gXDkL+Aw53hHpCGo9nUcw1wutrRGW2P/KHMrxWDh5LU=; b=cqC+qiwJhz5wbpMwzzA0t6pWFa +8Ix/MQhOGY+ZliiWQr0YIKF8mMbTlYhze4ID1dKZNbSuj1AuNIm2fehYRDdQb8wfHN5l99BK19WE XlircwBELcbpn35iP/w6arsF1MVuNcOFU/TSFtrucaYwxtyuTGh22e559zpPmGXP67RlE41VrUGKp pgmf9QWLPXKdwL0xzWxzAHuOK3kWeYCKwinq7zemHS4Uzzse1hfrNwmIU7UwLxTPpWVPvIqVBpZlh ba7wbB7reIigp3tO0xxzgZZxD67tqlJs2tukzUgV/98JLcrbxcCS1kLQFrUQgGiok5QVRy/s8niMe hU6XJIYw==; Received: from geoff by merlin.infradead.org with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1jSubG-0005VJ-VI; Mon, 27 Apr 2020 03:38:31 +0000 Message-Id: In-Reply-To: References: From: Geoff Levand Patch-Date: Sun, 26 Apr 2020 20:14:07 -0700 Subject: [PATCH v1 1/5] ncurses/nc-menu: Remove stray declaration To: Jeremy Kerr Date: Mon, 27 Apr 2020 03:38:30 +0000 X-BeenThere: petitboot@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Petitboot bootloader development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: petitboot@lists.ozlabs.org MIME-Version: 1.0 Errors-To: petitboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Petitboot" Signed-off-by: Geoff Levand --- ui/ncurses/nc-menu.h | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/ncurses/nc-menu.h b/ui/ncurses/nc-menu.h index 4d9e188..eb568c8 100644 --- a/ui/ncurses/nc-menu.h +++ b/ui/ncurses/nc-menu.h @@ -61,7 +61,6 @@ void pmenu_item_insert(struct pmenu *menu, struct pmenu_item *item, unsigned int index); void pmenu_item_add(struct pmenu *menu, struct pmenu_item *item, unsigned int insert_pt); -void pmenu_item_delete(struct pmenu_item *item); static inline struct pmenu_item *pmenu_item_from_arg(void *arg) {