From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tobias Klauser Subject: [PATCH 1/5] gc: remove unused #include "sigchain.h" Date: Thu, 22 Oct 2015 14:43:26 +0200 Message-ID: <1445517810-13998-2-git-send-email-tklauser@distanz.ch> References: <1445517810-13998-1-git-send-email-tklauser@distanz.ch> To: Junio C Hamano , Michael Haggerty , git@vger.kernel.org X-From: git-owner@vger.kernel.org Thu Oct 22 14:43:58 2015 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZpFDb-000717-7g for gcvg-git-2@plane.gmane.org; Thu, 22 Oct 2015 14:43:43 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757291AbbJVMne (ORCPT ); Thu, 22 Oct 2015 08:43:34 -0400 Received: from mail.zhinst.com ([212.126.164.98]:42943 "EHLO mail.zhinst.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751153AbbJVMnd (ORCPT ); Thu, 22 Oct 2015 08:43:33 -0400 Received: from ziws06.zhinst.com ([10.42.0.71]) by mail.zhinst.com (Kerio Connect 8.5.2); Thu, 22 Oct 2015 14:43:30 +0200 X-Mailer: git-send-email 2.6.1.148.g7927db1 In-Reply-To: <1445517810-13998-1-git-send-email-tklauser@distanz.ch> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: After switching to use the tempfile module in commit ebebeaea (gc: use tempfile module to handle gc.pid file), no declarations from sigchain.h are used in builtin/gc.c anymore. Thus, remove the #include. Signed-off-by: Tobias Klauser --- builtin/gc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/builtin/gc.c b/builtin/gc.c index 9ff0204..dc8a242 100644 --- a/builtin/gc.c +++ b/builtin/gc.c @@ -15,7 +15,6 @@ #include "lockfile.h" #include "parse-options.h" #include "run-command.h" -#include "sigchain.h" #include "argv-array.h" #include "commit.h" -- 2.6.1.148.g7927db1